find intersection of graph
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
NA
el 11 de Dic. de 2018
Editada: madhan ravi
el 12 de Dic. de 2018
I have this graph like this
plot ([0,1,1,0,0,1,0.5,0],[0,1,0,1,0,0,1.5,0],'-')
how can I find all intersections in this graph?
0 comentarios
Respuesta aceptada
madhan ravi
el 11 de Dic. de 2018
4 comentarios
madhan ravi
el 12 de Dic. de 2018
Editada: madhan ravi
el 12 de Dic. de 2018
x1=[0,1,1,0,0,1,0.5,0]
y1=[0,1,0,1,0,0,1.5,0]
P = InterX([x1;y1]); % P is the intersection of curves
plot(x1,y1,P(1,:),P(2,:),'ro')

Más respuestas (0)
Ver también
Categorías
Más información sobre Graph and Network Algorithms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!