implant non linear model using matlab

 Respuesta aceptada

Hoai Tran Quoc
Hoai Tran Quoc el 7 de Oct. de 2016
Editada: Hoai Tran Quoc el 7 de Oct. de 2016

0 votos

You'd better give one example (one formula) which you want to create.

4 comentarios

mansour sabra
mansour sabra el 7 de Oct. de 2016
Editada: Walter Roberson el 7 de Oct. de 2016
it's very simple example
dx1=-x1+x1x2+u
dx2=2x1-3x2
y=(1 0)x
Is dx1 intended to represent the derivative of x1? If so then is part of the task to figure out what the function is? Something like
syms x1(t) x2(t) u
eqn = [diff(x1(t),t) == -x1(t) + x1(t)*x2(t) + u; diff(x2(t)) == 2*x1(t)-3*x2(t), x1(0) == 1, x2(0) == 0]
dsolve(eqn)
??
mansour sabra
mansour sabra el 7 de Oct. de 2016
thnak you
Walter Roberson
Walter Roberson el 7 de Oct. de 2016
The above system has no general solution and runs into a singularity at about t = 1.33

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Preguntada:

el 6 de Oct. de 2016

Comentada:

el 7 de Oct. de 2016

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by