How to solve equation

2 visualizaciones (últimos 30 días)
Lalit Patil
Lalit Patil el 7 de Nov. de 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..?

Respuesta aceptada

Walter Roberson
Walter Roberson el 7 de Nov. de 2012
Editada: Walter Roberson el 7 de Nov. de 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.

Más respuestas (0)

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by