Reset the order of table columns
4 ビュー (過去 30 日間)
古いコメントを表示
Is it possible to change the order of columns in matlab table? Lets assume 5th column is parameter A. Can I bring it to the first column?
0 件のコメント
回答 (2 件)
the cyclist
2019 年 11 月 15 日
% Make the table
x = rand(2,1);
y = rand(2,1);
tbl = table(x,y)
% Rearrange the column order
tbl = tbl(:,[2 1]);
0 件のコメント
Steven Lord
2019 年 11 月 15 日
If you're using release R2018a or later you could use the movevars function.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Tables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!