Plot Problem
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
These commands create the expected plot:
x=.1:.1:4*pi;
y=sin(pi*x)/pi;
plot(x,y)
However, the following commands create a horizontal line at zero:
x=.1:.1:4*pi;
y=(sin(pi*x))/(pi*x);
plot(x,y)
(I don't have a sinc function.) I don't understand why the second set of commands doesn't work. Thoughts?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Raviteja
el 28 de Sept. de 2011
x=.1:.1:4*pi;
y=(sin(pi*x))./(pi*x);
plot(x,y)
Is this working?
0 comentarios
Ver también
Categorías
Más información sobre Waveform Design and Signal Synthesis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!