Matlab crashes while running *.mexw32
1 次查看(过去 30 天)
显示 更早的评论
Matlab crashes while running *.mexw32 file. This file is generated from a .cpp code. The Matlab runs fine when the output data size is less, but it crashes for higher data size output.
2 个评论
Kaustubha Govind
2012-6-11
I wonder if you're running out of memory? Try checking for NULL pointers returned from mxCreate* functions and throw an error using mexErrMsgTxt.
采纳的回答
Jan
2012-6-11
This means, that the CPP-function has a serious bug.
[EDITED, reply to comment "get rid of the problem of running out of memory]:
- Install more memory.
- Reduce the memory consumption of your program.
- Check all created arrays for NULL. Never never never omit such checks. They cost micro-seconds of runtime and seconds to be typed in, but they save hours of tedious debugging and not reproducible crashs.
2 个评论
Jan
2012-6-11
Dear Amit, I do not see a chance to guess the cause of the your problems without seeing the code.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Install Products 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!