sampling sawtooth sequence at high rate
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ahmad ramadan
el 23 de Oct. de 2018
Respondida: madhan ravi
el 23 de Oct. de 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])
Respuesta aceptada
madhan ravi
el 23 de Oct. de 2018
fs = 10000
t = 0:1/fs:1.5;
x1 = sawtooth(2*pi*50.*t);
subplot(2,1,1)
stem(x1)
xlim([1 200])
0 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!