how to add a row to a matrix?

3 ビュー (過去 30 日間)
arian hoseini
arian hoseini 2022 年 1 月 11 日
編集済み: KSSV 2022 年 1 月 11 日
A=[1;2;3;4;5]
i wanna add 0 to n row..i tried A(n, :) = 0...but i get this A=[0;2;3;4;5] instead of A=[0;1;2;3;4;5]
what's the problem?

採用された回答

KSSV
KSSV 2022 年 1 月 11 日
編集済み: KSSV 2022 年 1 月 11 日
Note that you want to append zero before to the first element of A. What you did is replace the first element of A with 0.
A=[1;2;3;4;5] ;
A = [0;A]
A = 6×1
0 1 2 3 4 5
  3 件のコメント
KSSV
KSSV 2022 年 1 月 11 日
編集済み: KSSV 2022 年 1 月 11 日
You check the output you have shown. In the output you have appended zero. You shuld not say adding at specific position, what you are doing is inserting. The procedure is same.
A = [1;2;3;4;5]
A = 5×1
1 2 3 4 5
n = 2 ;
A = [A(1:n-1) ; 0 ; A(n:end)]
A = 6×1
1 0 2 3 4 5
arian hoseini
arian hoseini 2022 年 1 月 11 日
A=[1;2;3;4;5]
add rows 2 and 5 to A to create B=[1;0;2;3;4;0;5]
A_temp=A;
index_rows=[2;5]
for i=1:size(index_rows,1)
mat1=A_temp(1:index_rows(i)-1);
mat2=A_temp(index_rows(i):end);
A_temp=[mat1;0;mat2];
end
B=A_temp;
i found the solution

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品


リリース

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by