if i have matrix x is 4 by 5, how can I retrieve the the row number and save it into y
Mostrar comentarios más antiguos
Respuesta aceptada
Más respuestas (1)
Matt Fig
el 18 de Feb. de 2011
x = ceil(rand(4,5)*20); % An example matrix.
y = size(x,1); % Is this what you mean?
y2 = x(4,:); % Or did you mean this?
1 comentario
Hello Blower
el 18 de Feb. de 2011
Categorías
Más información sobre Cell Arrays en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!