use of the below statements....
1 回表示 (過去 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!