Yes , it seems that other people have encountered this problem (neural networks do not load in MATLAB 2010), according to this MATLAB Central , which suggests Andreas Goser (Mathworks Technical Support Manager):
If you see this problem in the future, contact technical support and refer to solution 1-EGNM3S.
Obviously, you need a "fixed net.m file" that technical support can provide. I have not tested it, since I myself do not have this problem.
Having carefully read the error message, I would say that the variable that you see loaded contains an "unprocessed" object that was saved in a .MAT file, quite possibly a struct. You can run whos myvarname to check. To βanimateβ this structure into an object, it must be handled by the overloaded loadobj function for its object type, which is usually automatically called by the MATLAB load function. In this case, loadobj , which comes with the neuron network object in R2010, does not seem to be fully compatible with the feedback ...
source share