Gives the x and y-coordinates of the cross point of two straight lines
Calculates the x and y-coordinates of the cross point of two srtaight lines based on their intercepts and slopes
crosspoint(a1, b1, a2, b2)
a1
: intercept of first lineb1
: slope of first linea2
: intercept of second lineb2
: slope of second linea two column matrix with x- and y-coordinates of the cross point(s)
F. Korner
crosspoint(4, -0.1, 3, 0.1)
Useful links