please identify my mistake
Info
This question is closed. Reopen it to edit or answer.
Show older comments
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 Comments
Walter Roberson
on 16 Jan 2014
What error are you observing? Are you getting an error message, or is the result different than what you are expecting ?
arfa maqsood
on 16 Jan 2014
Walter Roberson
on 16 Jan 2014
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
on 16 Jan 2014
Answers (2)
Azzi Abdelmalek
on 16 Jan 2014
- instead of .
d2(l1,:)=c4*m1*a(1,2)^(j-1)
1 Comment
arfa maqsood
on 16 Jan 2014
Walter Roberson
on 16 Jan 2014
0 votes
In the case j < t, why are you not incrementing l1 ?
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!