Dear All,
I want to create FOR LOOP by Matlab to solve this equation :
x(t+dt)=(dt*A+I)*x(t)+B*dt
in which
A =[0 1;-6 -5]
I=eye(2)
B=[0;1]
dt=0.01
initial condition
x(0)=[0;0]
x(t) = vector 2x1
Any one can give me some ideas ?
I have created some scripts in m file as per below :
ft=1...