how to convert collumn matrix (nxn) into another matrix of (mxn) type .
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am working on my project where audio encryption is needed .I am stuck in a problem of converting column matrix into (mxn) type matrix. please help me its urgent
2 Commenti
KL
il 17 Ott 2017
What do you mean by "column matrix(nxn)"..?
Column matrix is supposed to have only one column, so it should rather be (nx1).
Risposte (1)
Cedric
il 17 Ott 2017
Modificato: Cedric
il 17 Ott 2017
Difficult to answer with that little detail.. Maybe:
M = reshape( v, n, n ) ;
or
M = reshape( v, n, [] ) ;
with a transposition ( .' ) afterwards if needed.
2 Commenti
Cedric
il 17 Ott 2017
I just don't understand what you want to achieve. After you stop recording, variable b is a 40000x1 vector. What do you want to do with it and why? Why a matrix?
Vedere anche
Categorie
Scopri di più su Encryption / Cryptography 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!