请帮我解释一下数据部分的参数

问题描述 投票:0回答:1

请帮我解释一下数据部分的参数。我不知道在数据标签中创建参数。例如,我有 2 个信号 x1 = 100cos(2pi200t); x2 = 500cos(2pi500t);,x = x1 + x2, 该怎么写呢? (串行fir matlab simulink中的块) 请帮我!!!非常感谢 enter image description here

matlab simulink
1个回答
0
投票

步骤非常简单,在Matlab命令窗口中定义你的时间向量和信号:

t = 0:0.01:10; % define time
x1 = 100*cos(2*pi*200*t'); % create signal
x1_in = [t',x1]; % create variable containing both time and signal 

然后在 Simulink 中,在 FromWorkspace 块参数值中只需写入信号名称的引用:

© www.soinside.com 2019 - 2024. All rights reserved.