getting the variable size value
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a variable of size x*y .what matlab command is used to get the x value.
0 comentarios
Respuesta aceptada
Más respuestas (1)
Ned Gulley
el 14 de Jun. de 2011
[m,n] = size(X)
m = size(X,dim)
So to find the number of rows, you can say
numRows = size(X,1)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!