Is there any possibility that a Matlab code which runs perfectly fine in 32bit system gives error in 64 bit system?
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (1)
Sean de Wolski
le 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.
Catégories
En savoir plus sur Fortran with MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!