use of the below statements....
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
can any one explain me about this statements? net=newsom(minmax(P),[64 2]); Q=double(reshape(Q,64,1));
0 Kommentare
Akzeptierte Antwort
Jos (10584)
am 16 Jul. 2013
Matlab comes with great help
help newsom
help minmax
help double
help reshape
...
1 Kommentar
Iain
am 16 Jul. 2013
instead of help, you can use doc. - Its a bit prettier. help and doc don't always contain all of the same info.
Weitere Antworten (1)
Matt J
am 16 Jul. 2013
Q=double(reshape(Q,64,1));
reshapes Q into a 64x1 vector and converts it to double floating point type.
4 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!