I want lo graph a interseccion

조회 수: 1 (최근 30일)
Arturo
Arturo 2024년 3월 4일
댓글: Dyuman Joshi 2024년 3월 4일
I dont now how can I graph an interseccion, I try with tutorials but didnt work
the functions are
x= 3 -y^2
y = x -1
The interseccions are
(-1,-2) (2,1)
  댓글 수: 1
Dyuman Joshi
Dyuman Joshi 2024년 3월 4일
What exactly does "graph an intersection" mean in this context?
Please specify how it "didn't work".

댓글을 달려면 로그인하십시오.

답변 (1개)

Chunru
Chunru 2024년 3월 4일
% x= 3 -y^2
y1 = (-3:0.02:3);
x1 = 3 - y1.^2;
% y = x -1
x2 = (-2:0.01:3);
y2 = x2 -1;
plot(x1, y1, 'r-', x2, y2, 'b-');

카테고리

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

태그

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by