Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以建议如何在 Simulink 中构建以下周期性源代码?左边部分是正弦波
周期为 0.8 秒。从 0 到 0.3 秒,它是一个半正弦函数(正半,周期 0.6 秒),幅度为 100;从 0.3 到 0.8,等于 0
谢谢:)
在 MATLAB Workspace 中定义时间和数据向量,例如
>> t = linspace(0,0.8,100)'; >> u = 100*sin(pi/0.3*t); >> u(t>=0.3) = 0;
然后在 Simulink 中使用重复序列源模块,其中时间向量设置为变量 t,数据向量设置为变量 u。