Series of rectangular pulses with increasing pulse length

조회 수: 1 (최근 30일)
Kurosch Mehrgan
Kurosch Mehrgan 2020년 10월 29일
답변: Akira Agata 2020년 10월 30일
I'm trying to define a function which is a series of rectangular pulses, where the length of a pulse increases by a constant with each repeat. The distance between the pulses should remain the same.
How would I do this in MATLAB?

답변 (1개)

Akira Agata
Akira Agata 2020년 10월 30일
How about using modulate function (Signal Processing Toolbox)?
The following is an example:
fs = 100;
fc = 5;
data = 0:0.2:1;
y = modulate(data,fc,fs,'pwm');
% Plot the waveform
figure
plot(y)
ax = gca;
ax.XTick = 0:20:120;
ax.YLim = [0 1.2];
grid on

카테고리

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

태그

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by