I have a Neural Network that I've save to a .mat file in Matlab 2007.
I'm trying to load the neural network from the file with load filename.mat
.
This worked great with versions R2007b and R2008, but when I try to load in R2010b I get the following message:
Warning: An error occurred when running a class's loadobj method. The object that was loaded from the MAT-file was a copy of the object before the loadobj method was run. The rest of the variables were also loaded from the MAT-file.
The encountered error was:
Reference to non-existent field 'name'
The weird thing is that it appears as if the variable holding the Neural Network exists, but it's not working properly. None of the functions that use the neural network work in R2010.
Has anyone encountered a similar problem ? How can I save the Neural Network so it will be compatible with Matlab R2010?
Or even better, how can I just load it properly in Matlab 2010?