フィルターのクリア

is there a way to flip an array

1 回表示 (過去 30 日間)
Raul Castillo
Raul Castillo 2019 年 11 月 20 日
編集済み: the cyclist 2019 年 11 月 20 日
i exported some data and need it to go from 27x1 to1x27 is there any way to do that without rewriting all the data

回答 (1 件)

the cyclist
the cyclist 2019 年 11 月 20 日
編集済み: the cyclist 2019 年 11 月 20 日
Yes, the transpose command.
xt = x.';
% or
xt = transpose(x);

カテゴリ

Help Center および File ExchangeCell Arrays についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by