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 秒までは、振幅 100 の半正弦関数 (正の半分、周期 0.6 秒) です。0.3 から 0.8 まで、0 に等しい
ありがとう:)
次のように、MATLAB ワークスペースで時間ベクトルとデータ ベクトルを定義します。
>> t = linspace(0,0.8,100)'; >> u = 100*sin(pi/0.3*t); >> u(t>=0.3) = 0;
次に、Simulink で、時間ベクトルを変数 t に設定し、データ ベクトルを変数 u に設定して Repeating Sequence ソース ブロックを使用します。