sampling sawtooth sequence at high rate

1 Ansicht (letzte 30 Tage)
ahmad ramadan
ahmad ramadan am 23 Okt. 2018
Beantwortet: madhan ravi am 23 Okt. 2018
why matlab give error fs = 10000 n=0:10000 t = 0:1/fs:1.5; x1 = sawtooth(2*pi*50*t); subplot(2,1,1) stem(n,x1) axis([0 0.1 -1.2 1.2])
  1 Kommentar
ahmad ramadan
ahmad ramadan am 23 Okt. 2018
the error say
Error in Untitled6 (line 6) stem(n,x1)

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

madhan ravi
madhan ravi am 23 Okt. 2018
fs = 10000
t = 0:1/fs:1.5;
x1 = sawtooth(2*pi*50.*t);
subplot(2,1,1)
stem(x1)
xlim([1 200])

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by