Olivia86
Automotive
- Sep 23, 2016
- 29
I'm trying to implement this situation inside an actual VBA/java program.
I need to acquire the intersections point created by the shape and the intersection line. I surfed the web and studied newton's method and other approaches, but they seem all too complex or hardly implementable.
Is there a way to find the intersection point given the equation you see in the link?
From eq1 to f, I have to find A and B
for example:
eq1: (((abs(x))/(a)))^(2 ((a)/(r)))+(((abs
)/(b)))^(2 ((b)/(r)))=1
intersection with
f: y=tan(15 ((π)/(180))) x
when a = 900
and b = 400
and r=5
it
generates
POINT A (-4,-1.07) and point B ( 4+1.07)
I need to implement this function in a program, so when I change "f" or "eq1" parameters I get the new points
Java or VBA but VBA is preferable
So if you can give me some info, or at least where to watch it would be great. Thanks!
I need to acquire the intersections point created by the shape and the intersection line. I surfed the web and studied newton's method and other approaches, but they seem all too complex or hardly implementable.
Is there a way to find the intersection point given the equation you see in the link?
From eq1 to f, I have to find A and B
for example:
eq1: (((abs(x))/(a)))^(2 ((a)/(r)))+(((abs
intersection with
f: y=tan(15 ((π)/(180))) x
when a = 900
and b = 400
and r=5
it
generates
POINT A (-4,-1.07) and point B ( 4+1.07)
I need to implement this function in a program, so when I change "f" or "eq1" parameters I get the new points
Java or VBA but VBA is preferable
So if you can give me some info, or at least where to watch it would be great. Thanks!