行を入れ替えたい
107 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
値は変更せず、行だけ丸々移動するには、どのようなプログラムにすれば良いのでしょうか。
初歩的な質問ですみません。
A = 1:33
B = reshape(A,[3,11])
% [1,4,7...]と並んでいる1行目と、[3,6,9...]と並んでいる3行目を入れ替えたいです。
0 comentarios
Respuestas (1)
Hernia Baby
el 1 de Nov. de 2022
以下のように配列番号の設定で行えます。
A = 1:33;
B = reshape(A,[3,11])
B([1 3],:) = B([3 1],:)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!