How to solve equation

2 vues (au cours des 30 derniers jours)
Lalit Patil
Lalit Patil le 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..?

Réponse acceptée

Walter Roberson
Walter Roberson le 7 Nov 2012
Modifié(e) : Walter Roberson le 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.

Plus de réponses (0)

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by