How to solve equation

2 ビュー (過去 30 日間)
Lalit Patil
Lalit Patil 2012 年 11 月 7 日
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..?

採用された回答

Walter Roberson
Walter Roberson 2012 年 11 月 7 日
編集済み: Walter Roberson 2012 年 11 月 7 日
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.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by