Adding a horizontal line to a plot

2 visualizaciones (últimos 30 días)
Cullen McGee
Cullen McGee el 13 de Mzo. de 2018
Editada: Matt J el 13 de Mzo. de 2018
Im trying to add a line at y=0 through the root of the function but for some reason I cant get it to work. This is what I have. If anyone could help that would be great.
f1=@ (x) exp(.5.*x)-sqrt(x)-3;
p01r=fzero(f1,3.1)
c=[0:5];
figure
fplot(f1,[1 5]);
hold on
plot(3.1236,0,'or');
plot(c,0);
hold off

Respuestas (1)

Matt J
Matt J el 13 de Mzo. de 2018
plot(c, zeroes(size(c)))

Categorías

Más información sobre Optimization 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!

Translated by