how to plot triangular waveform?

1 回表示 (過去 30 日間)
Musab Labeeb
Musab Labeeb 2020 年 5 月 6 日
回答済み: Vinay 2023 年 11 月 28 日
can anyone help me to plot following triangular waveform?

回答 (3 件)

Vinay
Vinay 2023 年 11 月 28 日
T = 10*(1/50);
fs = 1000;
t = 0:1/fs:T-1/fs;
x = sawtooth(2*pi*50*t);
plot(t,x)
grid on

Vinay
Vinay 2023 年 11 月 28 日

Star Strider
Star Strider 2020 年 5 月 6 日
See the documentation for the pulstran function.

Community Treasure Hunt

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

Start Hunting!

Translated by