output extra variables through ode23 when there are multiple unknowns
古いコメントを表示
By writing a function below, one can output extra variable v (other than unknown u):
function [ut,v]=myode(t,u)
ut=u;v=u+1;
Then output v below (V):
[T,U]=ode23(@myode,[],...)
[Ut,V]=myode(T,U)
But perhaps the above approach only works for the case where the ODE in question has only 1 unknown. When there're multiple unknowns, U will be a matrix rather than a vector. Then how to execute the last sentence above when U as an argument isn't a column vector?
2 件のコメント
Ameer Hamza
2020 年 3 月 7 日
You can solve multi-variable differential equations using ode23 by outputting them as elements of a vector. What do your differential equations look like?
feynman feynman
2020 年 3 月 8 日
採用された回答
その他の回答 (1 件)
Ameer Hamza
2020 年 3 月 8 日
As Walter mentioned, it is not possible to record have multiple output values when using ode23; neither does declaring variables as persistent or global will because of extra calls to myode. But you can tweak your system of differential equations to output any other variable you want. For example, consider the following differential equation
Suppose, you also want to output some other values, like
and
, so you can write the following equivalent system of differential equations
Then you can write myode as
function dydt = myode(t,y)
dydt(1) = y(1);
dydt(2) = 2*t;
dydt(3) = 3*t.^2 + dydt(1);
dydt = dydt(:);
end
and call the ode45 as
[t,y] = ode45(@myode, [0, 5], [1, 3, 1]);
The ode45 will output the value of all the three variables.
3 件のコメント
feynman feynman
2020 年 3 月 8 日
feynman feynman
2020 年 3 月 8 日
Ameer Hamza
2020 年 3 月 8 日
Yes, that true. I will cause overhead as compared to just calculating the values later.
カテゴリ
ヘルプ センター および File Exchange で Ordinary Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!