Is there any possibility that a Matlab code which runs perfectly fine in 32bit system gives error in 64 bit system?
Show older comments
I am facing this problem, any suggestions what could be the reason behind these errors or what I do in order to avoid any errors
Accepted Answer
More Answers (1)
Sean de Wolski
on 9 Sep 2014
My guess is this has nothing to do with bitness but more likely an error in your code that is being reached by a different code path. Common causes are shadowed functions and different paths.
Either way, IA is right. Use the debugger, the easiest is:
dbstop if error
This will stop when the error occurs and you can look at exactly what is causing it.
Categories
Find more on MATLAB Coder in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!