please identify my mistake
信息
此问题已关闭。 请重新打开它进行编辑或回答。
显示 更早的评论
l1=1;
for j=1:108
for t=2:108
if j<t
d2(l1,:)=c4*0;
else if j>=t
d2(l1,:)=c4*m1.a(1,2)^(j-1);
l1=l1+1;
end
end
end
end
4 个评论
Walter Roberson
2014-1-16
What error are you observing? Are you getting an error message, or is the result different than what you are expecting ?
arfa maqsood
2014-1-16
Walter Roberson
2014-1-16
Which line is the error occurring on?
Are you initializing d2 before the loop, or are you having d2 implicitly expanded as the loop runs?
arfa maqsood
2014-1-16
回答(2 个)
此问题已关闭。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!