Why is the output from Signal Editor not as expected?

1 次查看(过去 30 天)
The signal output from Signal Editor does not match the expected signal created in the scenario. Why is this happening?

采纳的回答

MathWorks Support Team
MathWorks Support Team 2024-7-26,0:00
The time data imported from external experimental data or created as T2 = [0:0.02:10]' can cause discrepancies (diff) between the time steps used by Simulink, which may lead to unexpected simulation results.
In this case, replacing the time data with the Simulink time step as shown below can avoid the mismatch issue.
timeVector = timeStep * [startTime:numSteps-1]'
This is explained in the "Specifying Time Data" section of the following documentation page.
Load Data to Root-Level Input Ports:
https://www.mathworks.com/help/releases/R2021a/simulink/ug/load-data-to-root-level-input-ports-1.html
Additionally, the "Note" explains that time data obtained incrementally, such as [0:0.2:10], may not match Simulink's time steps, so please check that.
For more details, please refer to the following blog post. 
https://blogs.mathworks.com/simulink/2012/02/09/using-discrete-data-as-an-input-to-your-simulink-model/?from=jp

更多回答(0 个)

类别

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

标签

尚未输入任何标签。

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by