Given two points in a Cartesian coordinate system, find the x-value on the line y = m*x+b where the y-value is equal to a given value c.
e.g.: we have the points P1(1,2) and P2(3,6) and we want wo know at which x-value y is equal to c = 8; The input is: x = [1 3], y = [2,6], c = 8.
The answer is 4.
Consider the possibility that there isn't any solution (return NaN) of that there is an infinity amount of points (return Inf). Additionally consider that the point could represent a vertial line.
Good Luck!
Solution Stats
Problem Comments
5 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers30
Suggested Problems
-
6085 Solvers
-
Calculate the area of a triangle between three points
3422 Solvers
-
Get the elements of diagonal and antidiagonal for any m-by-n matrix
513 Solvers
-
369 Solvers
-
Count consecutive 0's in between values of 1
519 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I don't understand the meaning of the problem. If y=c then x=0. Enlighten me, please.
If y=mx+b, when y=c, x=?
Hi everyone:
Dan: in my mathematical understanding (correct me if I am wrong): if y=c the slope m of the curve is 0. but for all x the condition y = c is correct, so x should be infinite
Or is there some error in the solution?
The problem description needs to be improved, maybe to something like: Given two points in a Cartesian coordinate system, find the x-value on the line y = a*x+b in which the y-value is equal to a given value c.
The description has been updated.