Is there any possibility that a Matlab code which runs perfectly fine in 32bit system gives error in 64 bit system?
Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (1)
Sean de Wolski
am 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.
Kategorien
Mehr zu Fortran with MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!