integral calculus of timeseries data

98 ビュー (過去 30 日間)
주희 박
주희 박 2022 年 10 月 5 日
回答済み: Sai 2022 年 10 月 11 日
Hi! I attached time data (t) & values(Value). And when i plotting these data, I gat a plot looks like trigonometrical function.
I want to intergal this and maybe i will looks like the opposite shape. Like relationship of sin & -cos.
(I don't know how to use int properly, so I just draw sin and -cos graph respectively)
How can I intergral thhat data?
  2 件のコメント
KSSV
KSSV 2022 年 10 月 5 日
Read about trapz
Walter Roberson
Walter Roberson 2022 年 10 月 5 日
cumtrapz() would probably be more appropriate.

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

回答 (1 件)

Sai
Sai 2022 年 10 月 11 日
I understand that you are trying to plot the integral of available data at corresponding time instants.
You can use the MATLAB function “cumtrapz(Value)” which will accept the data(“Value” is the data in this case) as an argument and returns the cumulative integral of the data which can be plotted against the corresponding time instants.
I hope this code snippet helps you resolve the issue.
plot(t, Value);
hold on;
plot(t, cumtrapz(Value));
hold off;
Please refer the following MathWorks documentation for your future reference.

カテゴリ

Help Center および File ExchangeNumerical Integration and Differentiation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by