Help needed plotting a graph

22 visualizaciones (últimos 30 días)
Umair Bux
Umair Bux el 13 de Dic. de 2017
Respondida: Honglei Chen el 13 de Dic. de 2017
The task is to plot a graph of y=sinx^2 divided by x^2 this is the code i've done but it doesnt produce a graph x=linspace(0,4*pi); y=sin(x).^2/x.^2; plot(x,y)

Respuesta aceptada

Honglei Chen
Honglei Chen el 13 de Dic. de 2017
You need to use ./, like
y=sin(x).^2./x.^2
HTH

Más respuestas (0)

Categorías

Más información sobre Graph and Network Algorithms 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