matlab 用for循环给矩阵赋值

2024年11月29日 22:41
有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