Converting a Double into a Matrix of its Digits
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Rightia Rollmann
il 12 Ago 2016
Modificato: Azzi Abdelmalek
il 12 Ago 2016
How can I convert the 3-by-1 matrix A into the 3-by-3 matrix B in the simplest way?
A = [ 123; 456; 789 ];
B = [ 1 2 3; 4 5 6; 7 8 9 ];
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 12 Ago 2016
Modificato: Azzi Abdelmalek
il 12 Ago 2016
A = [ 123; 456; 789 ]
B=num2str(A)-'0'
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical 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!