is there a way to flip an array

1 visualización (últimos 30 días)
Raul Castillo
Raul Castillo el 20 de Nov. de 2019
Editada: the cyclist el 20 de Nov. de 2019
i exported some data and need it to go from 27x1 to1x27 is there any way to do that without rewriting all the data

Respuestas (1)

the cyclist
the cyclist el 20 de Nov. de 2019
Editada: the cyclist el 20 de Nov. de 2019
Yes, the transpose command.
xt = x.';
% or
xt = transpose(x);

Categorías

Más información sobre Call Python from 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!

Translated by