How to solve the AX=0, When some of the elements in matrix X is known.

17 ビュー (過去 30 日間)
JITHA K R
JITHA K R 2018 年 1 月 11 日
コメント済み: Luke Pretzie 2019 年 9 月 2 日
I have to solve for X. Equation is AX=0. A MATRIX is a square matrix and in X matrix some of the elements are known some are unknowns. I want to get the unknowns. Can someone help me?

採用された回答

Birdman
Birdman 2018 年 1 月 11 日
編集済み: Birdman 2018 年 1 月 11 日
One approach is symbolical(requires Symbolic Toolbox).
A=[1 2 3;4 5 6;7 8 9];%dummy data
syms x1 x2
X=[x1;x2;1];
eq=A*X==0;
solx=solve(eq);
x1=solx.x1
x2=solx.x2
  4 件のコメント
JITHA K R
JITHA K R 2018 年 1 月 11 日
How will I specify matrix X with some known values and other unknown values as symbolic variables.?
Birdman
Birdman 2018 年 1 月 11 日
a=randi([1 10],18,1);%known dummy data
X=[x;a]

サインインしてコメントする。

その他の回答 (1 件)

Fadhel Alsaffar
Fadhel Alsaffar 2019 年 2 月 3 日
I tried the code above with my matrix but it did not work
A=[0.6485 -1 0;-1 2.4728 -2;0 -2 4.2970];%dummy data
syms x1 x2
X=[x1;x2;1];
eq=A*X==0;
solx=solve(eq);
x1=solx.x1
x2=solx.x2
Do you know what the problem with my code?
  1 件のコメント
Luke Pretzie
Luke Pretzie 2019 年 9 月 2 日
Did your code give you an error message? Or did it show no output, or it showed x1 and x2 as "structs"? You can convert your structs to floats using the double() function:
x1 = double(solx.x1)
x2 = double(solx.x2)
That's assuming, of course, that everyone else went right and you didn't get an error message. If you did, please let me know what it was. If not, let me know if my suggestion helped.

サインインしてコメントする。

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by