Is there any possibility that a Matlab code which runs perfectly fine in 32bit system gives error in 64 bit system?
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (1)
Sean de Wolski
el 9 de Sept. de 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.
Categorías
Más información sobre Fortran with MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!