【MatLab学习】 Debug 笔记

1.

Caught "std::exception" Exception message is:

Message Catalog MATLAB:load was not loaded from the file. Please check file location, format or contents


原因:从字面意思上看,是文件没有载入啥的,其实,这个主要原因是因为你用fopen()打开太多的文件,而又没有及时的关闭掉fclose()导致的。

解决方法:在每个文件fopen()后不需要再用到时,及时用fclose(fid)关闭即可。


2.




你可能感兴趣的:(debug,matlab)