Caught "std::exception" Exception message is: Message Catalog MATLAB:builtins was not loaded from the file.
Show older comments
Caught "std::exception" Exception message is: Message Catalog MATLAB:builtins was not loaded from the file. Please check file location, format or contents
I get this error after the fifth/sixth iteration of a loop in which I am opening (.nc) files from an external server.
Could this be related to the memory even though it does not give the standard memory error?
Answers (1)
Sean de Wolski
on 3 Apr 2014
What is the output from:
fopen all
If it is a vector, you could be running out of file handles. Remember to fclose() your file IDs. As a big hammer approach:
fclose all
1 Comment
JoeyNLDTU
on 7 Apr 2014
Thanks! Closing the files solved the problem.
Categories
Find more on Package MATLAB Functions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!