Borrar filtros
Borrar filtros

Problem in plotting a sinc function

2 visualizaciones (últimos 30 días)
Muhammad Saim Nasir Siddiqui
Muhammad Saim Nasir Siddiqui el 6 de Mzo. de 2015
Comentada: Star Strider el 8 de Mzo. de 2015
when i run this code.. it shows me an error
Error in ==> plotsinc at 2
y = sinc(x);
what that means...
iam using this code ..to plot a basic sinc function
x = linspace(-5,5);
y = sinc(x);
plot(x,y)
  1 comentario
Geoff Hayes
Geoff Hayes el 7 de Mzo. de 2015
Muhammad - please post the full error message (so that would be all of the red text that is generated when you run your above code).

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 7 de Mzo. de 2015
The code you posted runs for me without error.
The sinc function is part of the Signal Processing Toolbox.
If don’t have the Signal Processing Toolbox, you can create your own version of sinc easily enough:
sincx = @(x) sin(pi*x+1E-8)./(pi*x + 1E-8);
x = linspace(-5,5);
y = sincx(x);
plot(x,y)
  2 comentarios
Muhammad Saim Nasir Siddiqui
Muhammad Saim Nasir Siddiqui el 8 de Mzo. de 2015
Thanks it works
Star Strider
Star Strider el 8 de Mzo. de 2015
My pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by