How can I integrate a measurement signal into Simulink in an mFile?

1 次查看(过去 30 天)
I would like to integrate a Simulink signal with the value "1x1 double timeseries" in Matlab.
However, within an m-Function, integration using trapz or cumsum does not work.
I hope someone can help me here

回答(1 个)

Soumya
Soumya 2025-5-28
编辑:Soumya 2025-5-28
The functions such as‘trapz’and cumsum’are designed to operate on numeric arrays, rather than directly on‘timeseries’objects. To perform integration, you first need to extract the time and data vectors from your timeseries object.
Here is an example of how you can do that:
t = mySignal.Time;
x = mySignal.Data;
Additionally, these vectors may sometimes contain extra singleton dimensions, which can be removed using the‘squeeze’function to ensure compatibility with MATLAB’s numeric operations.
After this step, you can use the ‘trapzor the cumsum’ function to integrate the data:
y=trapz(t,x);
y=cumsum(t,x);
For more information on these functions, you may find the following documentation helpful:
I hope this helps!

类别

Help CenterFile Exchange 中查找有关 Simulink 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by