【MatLab学习】 Debug 笔记

来源:互联网 发布:red light. fx知乎 编辑:程序博客网 时间:2024/06/13 12:23

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.



0 0