use of the below statements....
2 次查看(过去 30 天)
显示 更早的评论
can any one explain me about this statements? net=newsom(minmax(P),[64 2]); Q=double(reshape(Q,64,1));
0 个评论
采纳的回答
Jos (10584)
2013-7-16
Matlab comes with great help
help newsom
help minmax
help double
help reshape
...
1 个评论
Iain
2013-7-16
instead of help, you can use doc. - Its a bit prettier. help and doc don't always contain all of the same info.
更多回答(1 个)
Matt J
2013-7-16
Q=double(reshape(Q,64,1));
reshapes Q into a 64x1 vector and converts it to double floating point type.
4 个评论
另请参阅
类别
在 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!