how do i plot a sawtooth graph without using the sawtooth function?
Ältere Kommentare anzeigen
T = 10*(1/50);
Fs = 1000;
dt = 1/Fs;
t = 0:dt:T-dt;
x = sawtooth(2*pi*50*t);
plot(t,x)
grid on
Antworten (3)
Raj
am 6 Mai 2019
0 Stimmen
See the accepted answer here:
You have to define a high value for parameter 'n' in the code.
Vedika Shinde
am 27 Jan. 2021
0 Stimmen
i) Write a set of MATLAB commands for approximating the continuous-time periodic Sawtooth wave of amplitude 5 volts, fundamental frequency 20Hz,and duty cycle 0.5. Plot five cycles of this waveform. ii) Find out the fourier series of this waveform plotted in (i). (iii) Plot the equation of Fourier series to get the original waveform back.
1 Kommentar
Atharva Deshpande
am 4 Feb. 2021
if u got any stuff related to the above question please do share
Matthias SImons
am 21 Apr. 2021
I stumbled over this question and generated an own solution:
To generate a sawtooth with time period T, over a time signal t just use interp1:
xx = [0 T/2 T];
yy = [1 0 1];
y = interp1(xx, yy, mod(t, T));
Kategorien
Mehr zu Waveform Generation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!