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 件)
Azzi Abdelmalek
2014 年 1 月 16 日
- instead of .
d2(l1,:)=c4*m1*a(1,2)^(j-1)
1 件のコメント
arfa maqsood
2014 年 1 月 16 日
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!