How to generate matrix as shown below?

1 次查看(过去 30 天)
How Can I generate specific matrix, Such as for n = 3, it shoud generate below three matrices.
% for example n = 3
A = [0 0 0 0; 1 0 0 0;2 1 0 0;3 2 1 0 ] ;
B = [3 0 0 0;2 2 0 0;1 1 1 0;0 0 0 0 ];
C = [0 0 0 0; 0 1 0 0;0 1 2 0;0 1 2 3];

回答(1 个)

Jakob
Jakob 2020-11-20
n = 3;
A(1,1:n+1) = 0;
for i = 2 : n+1
A(i,1:i-1) = A(i-1, 1:i-1) +1;
end
for i = 1: n+1
B(i,1:i) = (n+1-i);
end
C(1,n+1) = 0;
for i = 2 : n+1
C(i,:) = C(i-1,:);
C(i,i) = C(i,i-1)+1;
end

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by