roam
- 1,265
- 12
I want to find q501 for the difference equation:
qn=qn-1 - 0.001 q2n-2
n≥2,
q0=1,
q1=2
I thought it's easier to do this on Matlab & I tried to write a script file for this problem:
I don't know why my code isn't working/giving the right answer. Does anyone know what's the problem with this script?
qn=qn-1 - 0.001 q2n-2
n≥2,
q0=1,
q1=2
I thought it's easier to do this on Matlab & I tried to write a script file for this problem:
Code:
k=0.001
q(1)=1
q(2)=2
for n=1:502
q_n=q_n-1-k*(q_n-2)^2
end
I don't know why my code isn't working/giving the right answer. Does anyone know what's the problem with this script?