getting the variable size value

1 visualización (últimos 30 días)
ramakrishna bathini
ramakrishna bathini el 14 de Jun. de 2011
I have a variable of size x*y .what matlab command is used to get the x value.

Respuesta aceptada

Alex Taylor
Alex Taylor el 14 de Jun. de 2011
[R,C] = size(A);
doc size

Más respuestas (1)

Ned Gulley
Ned Gulley el 14 de Jun. de 2011
To find the size, use size.
[m,n] = size(X)
m = size(X,dim)
So to find the number of rows, you can say
numRows = size(X,1)
  1 comentario
ramakrishna bathini
ramakrishna bathini el 14 de Jun. de 2011
thanks for the reply a=size(X,1) is the command i was looking for...

Iniciar sesión para comentar.

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by