Borrar filtros
Borrar filtros

I want lo graph a interseccion

1 visualización (últimos 30 días)
Arturo
Arturo el 4 de Mzo. de 2024
Comentada: Dyuman Joshi el 4 de Mzo. de 2024
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 comentario
Dyuman Joshi
Dyuman Joshi el 4 de Mzo. de 2024
What exactly does "graph an intersection" mean in this context?
Please specify how it "didn't work".

Iniciar sesión para comentar.

Respuestas (1)

Chunru
Chunru el 4 de Mzo. de 2024
% 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-');

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by