Plotting an Anonymous Function

20 visualizaciones (últimos 30 días)
Jake Farley
Jake Farley el 31 de En. de 2017
Comentada: Jake Farley el 31 de En. de 2017
I have created an anonymous function
sqr = @(x) x.^2;
and I am trying different methods for plotting this function, and none seem to plot the function correctly (aside from ezplot) I have tried
figure
plot(sqr(-5:5))
figure
fplot(sqr(-5:5))
Using plot(), it creates a correct looking plot but my axes are not correct, it displays the function from 1 to 11, centered at 6. (so the range is correct)
using fplot() it creates horizontal lines from x = -5:5 at y = 0, 2, 4, 9, 16, 25
Is this what is supposed to happen and I just don't fully understand the functions yet? Or have I set my function up incorrectly?
Thanks.

Respuesta aceptada

James Tursa
James Tursa el 31 de En. de 2017
Editada: James Tursa el 31 de En. de 2017
You need to explicitly give plot the "x" information, not just the "y" information. E.g.,
x = -5:5;
plot(x,sqr(x))

Más respuestas (0)

Categorías

Más información sobre Line Plots 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