How can I find the intersection point between 2 graphs?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
may95
el 7 de Dic. de 2018
Comentada: Star Strider
el 8 de Dic. de 2018
Hi guys,
I would kindly like your help on how to find the intersection point between the yellow and blue line (at x=800), as shown below. It's probably very easy to solve, but I really have no clue how to get around this.

My code looks like this:
x = [0:10:5000]
y = Xumix1
g = Xumix2
k = [800 800]
l = [-5e6 4e6]
plot(x,y,x,g,k,l),xlabel('T'),ylabel('U'), legend('Umix1','Umix2')
0 comentarios
Respuesta aceptada
Star Strider
el 8 de Dic. de 2018
Use the interp1 function:
x = [0:10:5000];
Xumix1 = 0.12 * x.^2; % Create Data
Intersect_y = interp1(x, Xumix1, 800)
Intersect_y =
76800
I guessed at a function fo ‘Xumix1’ to illustrate the idea.
2 comentarios
Star Strider
el 8 de Dic. de 2018
My pleasure!
If my Answer helped you solve your problem, please Accept it!
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!