Intersection of Two Implicit Curves over a domain
Ältere Kommentare anzeigen
I have two implicit equations, one circle and one ellipse. I would like to know if there is a function or a way to find an intersection belonging to a given domain. Consider, for example:
circ = @(x,y) x^2+y^2-4 elp = @(x,y) ((x-2))^2+((y+2)/4)^2-1
There are two points of intersection (approximately):
P1 ~ (1.00 , -1.73) P2 ~ (1.46 , 1.37)
So I would like to know how to find P1, knowing it lies somewhere between: X: (0.8 , 1.2) Y: (-2 , -1)
OBS: I have no problems with numeric approximations, especially if it is not computationally intensive.
Thanks
Akzeptierte Antwort
Weitere Antworten (1)
Rodrigo
am 9 Mai 2013
0 Stimmen
1 Kommentar
Fenil Patel
am 1 Mär. 2019
can this method used for two intersecting cylinder??
Kategorien
Mehr zu Systems Of Linear Equations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!