Conversion to struct from double is not possible- Neural Network Pattern Recognition Toolbox

조회 수: 2 (최근 30일)
Hello. I'm trying to execute the simplest example for Pattern recognition network, given in this link http://www.mathworks.fr/fr/help/nnet/ref/patternnet.html for iris flowers classification.
[x,t] = iris_dataset;
net = patternnet(10)
net = train(net,x,t);
view(net)
y = net(x);
perf = perform(net,t,y)
classes = vec2ind(y)
Error using struct Conversion to struct from double is not possible.
And it's the same error if I use the Neural Network interface. Can anyone help me, please? Thank you very much!
  댓글 수: 4
Don Mathis
Don Mathis 2014년 6월 14일
편집: Don Mathis 2014년 6월 14일
I discovered that the cause of my replication of your error was the fact that I had redefined the 'softmax' function in my MATLAB workspace. There are a number of functions that would cause this error if you redefine them, such as: netsum purelin tansig dividerand mse adaptwb learngdm crossentropy softmax

댓글을 달려면 로그인하십시오.

채택된 답변

Greg Heath
Greg Heath 2013년 7월 28일
I cut and pasted your code. It ran with no problem or messages.

추가 답변 (3개)

MHS
MHS 2018년 4월 27일
I faced similar problem and it was resolved by resetting the workspace path list to default.

ahmad ali mohammad
ahmad ali mohammad 2016년 11월 9일
I was faced with the same problem When I run certain code occurs after you run this code I have to remove and re-install MATLAB

Afonso Costa
Afonso Costa 2018년 12월 1일
편집: Afonso Costa 2018년 12월 1일
I found a solution for this problem. I think it is clashing with another function you may have.
To solve, go to Environment > Set Path, then move all the directories you included (from other toolboxes) to the end of the entries.
For me, worked like a charm!

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by