solving symbolic system diff equation using dsolve error (five diff equations)
Show older comments
I try to solve system equations which consist of five first order differential equations as follow using dsolve,
x'(t)=m*u - 2*l*x(t),y'(t)=2*c*l*x(t)-B*y(t),z'(t)=x(t)*(2*l-c*l)-A*z(t), m'(t)=A*z(t)-m(t)*(l + u) + B*y(t) + n(t)*u, n'(t)= l*m(t) - n(t)*u.
with initial condition x(t)=1, y(t)=z(t)=m(t)=n(t)=0, other variables are constants.
however i got the error shown ??? Error using ==> mupadmex Error in MuPAD command: cannot compute the explicit representation of the eigenvalues; use 'numeric::eigenvectors' [linalg::eigenvectors]
Error in ==> sym.sym>sym.mupadmexnout at 2018
out = mupadmex(fcn,args{:});
Error in ==> dsolve>mupadDsolve at 190
[var_list,R] = mupadmexnout('symobj::dsolve',sys,x,ignoreConstraints);
Error in ==> dsolve at 97
[R,vars] = mupadDsolve(ignoreConstraints,varargin{1:narg});"
Please help / recommend.
Accepted Answer
More Answers (0)
Categories
Find more on Common Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!