Matrix (Resultant from an Expression) Indexing
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
A.
el 26 de Dic. de 2013
Comentada: Wayne King
el 29 de Dic. de 2013
Say I want to get the length of an array A . Normally I would do:
[m,n]=size(A)
And then use the n in other expressions.
But what if I want to get my n immediately; is there anything of the form
n=size(A)(2)
analogous to how I would pull the second element n from an array N using
n=N(2)
?
0 comentarios
Respuesta aceptada
Wayne King
el 26 de Dic. de 2013
Editada: Wayne King
el 26 de Dic. de 2013
Yes
A = randn(20,10);
size(A,2)
size(A,1)
So
N = size(A,2);
Did you read the help?
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!