
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 ビュー (過去 30 日間)
古いコメントを表示

1 件のコメント
Prachi Kulkarni
2022 年 1 月 11 日
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?
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Labels and Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!