matlab 用for循环给矩阵赋值

2024-11-29 22:41:30
推荐回答(1个)
回答1:

for i=1:3
for j=1:4
if i>j
b(i,j)=i+j;
else
if i==j
b(i,j)=1;
else
b(i,j)=i-j;
end
end
end
end