use of the below statements....
2 views (last 30 days)
Show older comments
can any one explain me about this statements? net=newsom(minmax(P),[64 2]); Q=double(reshape(Q,64,1));
0 Comments
Accepted Answer
Jos (10584)
on 16 Jul 2013
Matlab comes with great help
help newsom
help minmax
help double
help reshape
...
1 Comment
Iain
on 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.
More Answers (1)
Matt J
on 16 Jul 2013
Q=double(reshape(Q,64,1));
reshapes Q into a 64x1 vector and converts it to double floating point type.
4 Comments
See Also
Categories
Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!