필터 지우기
필터 지우기

can someone please explain me how to plot this fourth x4,y4 line in this graph?

조회 수: 1 (최근 30일)
can someone please explain me how to plot this fourth x4,y4 line in this graph? i want to plot the graph where the end points thses lines touch x and y axis respectively.
x1=[0.8043 0];
y1=[0 0.0789];
plot(x1,y1,'k')
hold on
x2=[0.8407 0];
y2=[0 0.0825];
plot(x2,y2,'r')
hold on
x3=[0.8426 0];
y3=[0 0.0826];
plot(x3,y3,'y')
x4=[0.1 0];
y4=[0 -0.1];
plot(x4,y4,'g')
xlim([0,0.9])
ylim([0,0.1])

답변 (1개)

KSSV
KSSV 2021년 11월 30일
plot(x4,y4,'*g')

카테고리

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

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by