Neural Network issue Unable to Create Network
2 次查看(过去 30 天)
显示 更早的评论
Error
Unable to Create Network Error :<a href="matlab:opentoline('C
3 个评论
Greg Heath
2014-6-25
I don't think you will get much help unless you post the relevant code with corresponding comments and error messages.
回答(2 个)
Tunan
2014-7-4
I have the same problem. All of a sudden, Matlab NN toolbox doesn't work any more. It was fine in May.
When I was trying the nprtool and using the sample data, it doesn't work.
Anybody know what's happening? There is no source code since we are using the GUI.
3 个评论
Tunan
2014-7-8
No, it is not a trial. I've used it on our dept lab's computer, and it doesn't update recently, so I don't think it's from release issues.
But I download some toolboxes online. Some of them seems have conflicting functions with Matlab default function names. There is warning when Matlab starts, but it's only warning so I didn't pay too much attention on it.
Any suggestions?
Amanjit Dulai
2015-1-16
编辑:Amanjit Dulai
2015-1-28
The cause of this problem may be a name conflict due to files having the same name on the MATLAB path.
The error seems to be thrown by a function called by "nntype.performance_fcn". You can get more information on where the error is thrown from by setting a breakpoint in this file. To do this, type the following MATLAB command to open this file:
edit nntype.performance_fcn
When the file opens, set a breakpoint on line 31 by clicking in the left hand column of the editor window. If you then run "patternnet", you should hit this breakpoint. At this point, you can run the next function in "performance_fcn.m" manually by typing the following command:
err = type_check(in2);
You should then get more detailed information on the error.
Juliana Corlier-Bagdasaryan
2017-4-25
I had the same problem (Default value is not a member of type "nntype.performance_fcn".) when running neural networks pattern recognition via GUI. I have resolved the problem by addressing the conflict warnings showing up when opening matlab. Type which + the name of the conflicting function and it will probably show you a path to a toolbox that you have downloaded. However, instead it should be a buil-in matlab function.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!