Steady States for dynamic equations

5 visualizaciones (últimos 30 días)
Bismark
Bismark el 17 de Jun. de 2023
Editada: Torsten el 17 de Jun. de 2023
Hello all! I have a set of dynamic equations that need to be solved. Can matlab be used to calculate the steady state values and if yes, how do i go by it. Thank you

Respuestas (1)

Torsten
Torsten el 17 de Jun. de 2023
Movida: Torsten el 17 de Jun. de 2023
Use "fsolve" together with the function you used to describe your dynamical system.
  4 comentarios
Bismark
Bismark el 17 de Jun. de 2023
Editada: Torsten el 17 de Jun. de 2023
K = (1-a)K(-1)+I
It looks like this sir
Walter Roberson
Walter Roberson el 17 de Jun. de 2023
syms a K I
eqn = K == (1-a)*K+I
eqn = 
solve(eqn, K)
ans = 

Iniciar sesión para comentar.

Etiquetas

Productos


Versión

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by