行列の一行目を消す方法
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
可野 谷上
el 18 de Dic. de 2020
Comentada: 可野 谷上
el 18 de Dic. de 2020
行列の1行目を消す方法を知りたいです。
例えば A = [1 2 3; 4 5 6 ; 7 8 9] のような 3×3の行列があるとすると
B = [4 5 6; 7 8 9] の 2×3行列にしたいです。
よろしくお願いします。
0 comentarios
Respuesta aceptada
Hiroshi Miyagawa
el 18 de Dic. de 2020
A = [1 2 3;4 5 6;7 8 9];
B = A(2:end,:); % 行列Aの2行目以降を取り出します
% 2行目以降を 2:end と表現しています
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!