필터 지우기
필터 지우기

Square Pulse Generator with Varying Amplitude

조회 수: 6 (최근 30일)
Mohsen
Mohsen 2011년 7월 26일
댓글: Sena Koçak 2022년 1월 12일
I am modeling a system using Simulink.
I need to make the input of the system a series of pulses (non periodic). Each pulse has a different amplitude.
For example, the first pulse has an amplitude of 5 ; the 2nd: 3 ; the 3rd: 10 ; the 4th: 1 ; the 5th: 20 ; etc.
I though that I should make a gain matrix and multiply it by the input pulse generator but it doesn't seem to work...
Any idea how to solve this?
Thanks!

채택된 답변

Fangjun Jiang
Fangjun Jiang 2011년 7월 26일
If the pulse is non periodic, how do you use Pulse Generator block?
One solution is to use the Signal Builder block, you can add the pulse any way you like.
Construct variable t and y in workspace like below:
t=[0:11;1:12];
t=t(:);
y=repmat([0 0 1 1],1,6);
Then in Signal Builder block, select menu Signal>New>Custom..., put in t and y, and then you can drag the pulse to adjust the amplitude.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Sources에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by