Problem with Create Matrix
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello, Why this command doesn't work? FD = [1:10 ; 50:60]
0 Commenti
Risposta accettata
Thorsten
il 27 Ott 2015
Modificato: Thorsten
il 27 Ott 2015
Because
Error using vertcat
CAT arguments dimensions are not consistent.
You have 10 numbers in the first row, and try to conCAT vertically 11 numbers in the second row. That's not possible in a matrix, all rows must have the same number of columns.
You can use a cell array
FD{1} = 1:10; FD{2} = 50:60;
or you have to change the numbers, like
FD = [1:10; 51:60];
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Operators and Elementary Operations 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!