Borrar filtros
Borrar filtros

What is the name of the operation X(:)

21 visualizaciones (últimos 30 días)
Björn
Björn el 20 de Ag. de 2014
Editada: Matt J el 20 de Ag. de 2014
I came across some code at work where they use X(:). It appears that this command rearranges the matrix. If I have a matrix X of size (M, N), then X(:) is of size (M*N,1).
What is the name of this operation? What can I search for?
I'm curious to read about it. One thing I want to check is if I can find an easy way to get the (M,N)-sized matrix back.
Thanks!

Respuesta aceptada

Guillaume
Guillaume el 20 de Ag. de 2014
  2 comentarios
Björn
Björn el 20 de Ag. de 2014
Thanks!
Guillaume
Guillaume el 20 de Ag. de 2014
Note that if you want to get the original matrix back, reshape is the function:
reshape(X(:), M, N)

Iniciar sesión para comentar.

Más respuestas (1)

Matt J
Matt J el 20 de Ag. de 2014
Editada: Matt J el 20 de Ag. de 2014
What is the name of this operation? What can I search for?
As it happens, the name of the operation and where you can read about it are two different things. Although X(:) is described under "doc colon", it is really a subsref operation,
>> X=rand(5,4);
>> S.type='()'; S. subs={':'};
>> isequal(X(:), subsref(X,S) )
ans =
1

Categorías

Más información sobre Logical 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