Steady States for dynamic equations

3 ビュー (過去 30 日間)
Bismark
Bismark 2023 年 6 月 17 日
編集済み: Torsten 2023 年 6 月 17 日
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

回答 (1 件)

Torsten
Torsten 2023 年 6 月 17 日
移動済み: Torsten 2023 年 6 月 17 日
Use "fsolve" together with the function you used to describe your dynamical system.
  4 件のコメント
Bismark
Bismark 2023 年 6 月 17 日
編集済み: Torsten 2023 年 6 月 17 日
K = (1-a)K(-1)+I
It looks like this sir
Walter Roberson
Walter Roberson 2023 年 6 月 17 日
syms a K I
eqn = K == (1-a)*K+I
eqn = 
solve(eqn, K)
ans = 

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeEquation Solving についてさらに検索

タグ

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by