use of the below statements....
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
can any one explain me about this statements? net=newsom(minmax(P),[64 2]); Q=double(reshape(Q,64,1));
0 Commenti
Risposta accettata
Jos (10584)
il 16 Lug 2013
Matlab comes with great help
help newsom
help minmax
help double
help reshape
...
1 Commento
Iain
il 16 Lug 2013
instead of help, you can use doc. - Its a bit prettier. help and doc don't always contain all of the same info.
Più risposte (1)
Matt J
il 16 Lug 2013
Q=double(reshape(Q,64,1));
reshapes Q into a 64x1 vector and converts it to double floating point type.
4 Commenti
Vedere anche
Categorie
Scopri di più su Sequence and Numeric Feature Data Workflows in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!