
I am not getting the title, x axis, y axis label in the graph eventhough In code i given title('Demonstration of Rolles theorem'); xlabel('x-axis') ylabel("y-axis")
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos

1 comentario
Prachi Kulkarni
el 11 de En. de 2022
Hi,
I implemented your code, in MATLAB R2021b, on a sample symbolic expression.
It shows the legend, title, xlabel, ylabel for the figure.
Here’s the example code.
syms x
f = x^2;
r=0;
a=-2;
b=2;
tval=subs(f,x,r);
xval=linspace(a,b,100);
yval=subs(f,x,xval);
plot(xval,yval);
[p,q]=size(xval);
for i=1:length(tval)
hold on;
plot(xval,tval(i)*ones(p,q),'r');
hold on;
plot(r(i),tval(i),'ok');
end
hold off;
legend('Function','Tangent');
title('Demonstration of Rolles Theorem');
xlabel('x-axis')
ylabel("y-axis")
And this is the output figure.

If you are still facing the issue, can you please share your full code and which release of MATLAB you are using?
Respuestas (0)
Ver también
Categorías
Más información sobre Labels and Annotations 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!