Som maps problem in matlab
Posted
by
Serdar Demir
on Stack Overflow
See other posts from Stack Overflow
or by Serdar Demir
Published on 2011-01-02T13:02:29Z
Indexed on
2011/01/02
14:53 UTC
Read the original article
Hit count: 503
I have a text file that include data. My text file:
young, myopic, no, reduced, no
young, myopic, no, normal, soft
young, myopic, yes, reduced, no
young, myopic, yes, normal, hard
young, hyperopia, no, reduced, no
young, hyperopia, no, normal, soft
young, hyperopia, yes, reduced, no
young, hyperopia, yes, normal, hard
I read my text file load method
%young=1
%myopic=2
%no=3 etc.
load iris.txt
net = newsom(1,[1 5]);
[net,tr] = train(net,1);
plotsomplanes(net);
Error code:
??? Undefined function or method 'plotsomplanes' for input arguments of type 'network'.
© Stack Overflow or respective owner