How to solve equation

1 view (last 30 days)
Lalit Patil
Lalit Patil on 7 Nov 2012
I have
a = [1 2 3 4]; b = [2 3 4 5];
(X*a - 5)^2 + (X*b - 6)^2 + (X - 4)^2 - 16 = 0
How to create this 4 equations and find the value of 'X' for each equation in MATLAB..?

Accepted Answer

Walter Roberson
Walter Roberson on 7 Nov 2012
Edited: Walter Roberson on 7 Nov 2012
arrayfun( @(A, B) roots([B^2+A^2+1, -12*B-10*A-8, 61], a, b, 'Uniform', 0)
Alternate approach that reaches the answer you want but with a different sequence of steps:
syms A B X
x = solve((X*A - 5)^2 + (X*B - 6)^2 + (X - 4)^2 - 16, X);
subs(x, {A, B}, {a, b})
This finds the generalized solution as a single equation, and then puts the actual values in, which is the reverse of the steps you asked.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!