is there a way to flip an array
Ältere Kommentare anzeigen
i exported some data and need it to go from 27x1 to1x27 is there any way to do that without rewriting all the data
Antworten (1)
the cyclist
am 20 Nov. 2019
Bearbeitet: the cyclist
am 20 Nov. 2019
xt = x.';
% or
xt = transpose(x);
Kategorien
Mehr zu Structures finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!