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

1 visualización (últimos 30 días)
timepass
timepass el 2 de Mayo de 2019
Editada: Soumya el 28 de Mayo de 2025
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

Respuestas (1)

Soumya
Soumya el 28 de Mayo de 2025
Editada: Soumya el 28 de Mayo de 2025
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!

Categorías

Más información sobre Simulink en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by