getting the variable size value
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a variable of size x*y .what matlab command is used to get the x value.
0 Commenti
Risposta accettata
Più risposte (1)
Ned Gulley
il 14 Giu 2011
[m,n] = size(X)
m = size(X,dim)
So to find the number of rows, you can say
numRows = size(X,1)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB 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!