필터 지우기
필터 지우기

How to draw this graph?

조회 수: 1 (최근 30일)
Yassin Issou
Yassin Issou 2020년 6월 9일
편집: KSSV 2020년 6월 9일
I want to draw something like this example, I mean without numbers in the axis but just x0 and x1, and with the functions shown only between x0 and x1.

채택된 답변

KSSV
KSSV 2020년 6월 9일
편집: KSSV 2020년 6월 9일
Read about xticks for labelling x1, x2 along the axes. I have taken random points for plotting. You can take your required points to plot striaght line and the curve.
% Striaght line
L = rand(2,2) ;
% Curve passing through above two points
p = polyfit(L(:,1),L(:,2),3) ;
xi = linspace(min(L(:,1)),max(L(:,1))) ;
yi = polyval(p,xi) ;
%plot
figure
hold on
plot(L(:,1),L(:,2),'r')
plot(xi,yi,'b')
xlabel('x')
ylabel('y')
% Add text
text(mean(L(:,1)),mean(L(:,2))+0.02,'p(x)','FontSize',20)
text(mean(xi),mean(yi)-0.02,'f(x)','FontSize',20)

추가 답변 (1개)

Kevin Joshi
Kevin Joshi 2020년 6월 9일
You can use the 'XTick' and 'XTickLabel' as specified in,
https://in.mathworks.com/help/matlab/ref/matlab.graphics.axis.axes-properties.html

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by