01-18-2006 06:33 AM
01-18-2006 06:50 AM
01-18-2006 07:39 AM
01-18-2006 07:43 AM
Just like float comparisons, you will not get an exact match but you can get "intersections by setting the distance between points to be less than some minimum value. also depending on the functions, you might beable to solve the equality equations and find the zero points.
Paul
01-18-2006 07:43 AM
Just like float comparisons, you will not get an exact match but you can get "intersections by setting the distance between points to be less than some minimum value. also depending on the functions, you might beable to solve the equality equations and find the zero points.
Paul
01-18-2006 11:40 AM
01-18-2006 12:32 PM
One other method of finding intersections is to use a crossover analysis (assuming 2 functions are continuous), that is given a pair of points from each graph if the first point of graph A (X11, Y11) is greater than the first point of graph 2 (X21, Y21) but the case is flipped in the second point (X12, Y12) vs (X22, Y22) the there must be a crossover (intersection) between them, interpolation might give you a better guess at the exact location.