Horzcat error with num2str in disp function.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
When I run the following script:
A = [5,6,7;8,9,10;11,12,13];
disp(['The values in A are' num2str(A) '.'])
I get the following error message:
Error using horzcat
Dimensions of matrices being concatenated are not consistent.
Why?
0 Commenti
Risposte (2)
dpb
il 10 Feb 2015
Because A is 3x3 whereas the string is 1xlength(). Use
disp(['The values in A are' num2str(A(:).') '.'])
0 Commenti
Star Strider
il 10 Feb 2015
Another option:
A = [5,6,7;8,9,10;11,12,13];
disp('The values in A are ')
disp(A)
0 Commenti
Vedere anche
Categorie
Scopri di più su Argument Definitions in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!