how to plot triangular waveform?
이전 댓글 표시
can anyone help me to plot following triangular waveform?
답변 (3개)
Vinay
2023년 11월 28일
1 개 추천
T = 10*(1/50);
fs = 1000;
t = 0:1/fs:T-1/fs;
x = sawtooth(2*pi*50*t);
plot(t,x)
grid on
Star Strider
2020년 5월 6일
0 개 추천
카테고리
도움말 센터 및 File Exchange에서 Waveform Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
