我有一个嵌套的 for 循环,在内部循环中我有一个数组,它将在每次迭代中改变大小和值,例如;
a=[ 2 3 4]
在下一次迭代中它将是:
a=[9 5]
但我的代码的结果是:
a=[9 5 4]
a(3) 是问题,它来自上一次迭代,我不想要它,我该怎么办?
我不知道如何在这里编写我的代码,因为它包含很多功能,您不会理解它!?
但它是这样的:
for j=1: 5
%l is the length of row in cell array(a) that varies from one row to another
for i=1:l
dn=a{j,i};
spp(t)=dn(1)
end
targ{j,1}=spp;
end
spp 是这里的问题