matlab 想写i=2,j=1;i=3,j=1、2;i=4,j= 1、2、3,...以此类推,j的最大值为i-1i j是两个for循环 应该怎么写哇 !qiuqiu
for i=2:10 for j=1:i-1 end end