how to plot triangular waveform?
Mostrar comentarios más antiguos
can anyone help me to plot following triangular waveform?
Respuestas (3)
Vinay
el 28 de Nov. de 2023
1 voto
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
el 28 de Nov. de 2023
1 voto

Star Strider
el 6 de Mayo de 2020
0 votos
Categorías
Más información sobre Waveform Generation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!