How to integrate given the two data columns

8 ビュー (過去 30 日間)
Grigorios Chatziandreou
Grigorios Chatziandreou 2022 年 4 月 29 日
回答済み: Torsten 2022 年 4 月 29 日
Hello. I have used ode45 to figure out current wrt time.
I have my matrix tz and my matrix CURRENT for values of current with time from tz(1)=0 to tz(end). How can I intagrate it? Any clever way if I do not know the time step in tz?

回答 (2 件)

Riccardo Scorretti
Riccardo Scorretti 2022 年 4 月 29 日
Most probably like this:
CHARGE = sum(CURRENT(1:end-1) .* diff(tz));
  1 件のコメント
Riccardo Scorretti
Riccardo Scorretti 2022 年 4 月 29 日
Something better can be done, but if you have a large number of points, it will give more or less the same result.

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


Torsten
Torsten 2022 年 4 月 29 日
Add the differential equation
dz/dt = CURRENT, z(t0) = 0
to your system of ODEs.
z will automatically be the integrated CURRENT over time.

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by