reverse of row in matlab
2 ビュー (過去 30 日間)
古いコメントを表示
If I have 23 columns and five rows like this
if true
% code
end
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
and I want is
if true
% code
end
5 4 3 2 1
5 4 3 2 1
5 4 3 2 1
If it is possible to do in matlab?
0 件のコメント
採用された回答
Fabio Barbosa
2018 年 4 月 6 日
Use the flip function: https://www.mathworks.com/help/matlab/ref/flip.html?s_tid=doc_ta
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!