フィルターのクリア

2x2 matrix calculation

27 ビュー (過去 30 日間)
dhlee
dhlee 2022 年 6 月 21 日
コメント済み: dhlee 2022 年 6 月 21 日
Dear all,
I want to solve the 2x2 matrix problem.
There are three 2x2 matrix (Ta, Tb, Tc). Two matrix are known and one matrix is unknown value.
For example Ta = [3 4 ; 4 3], Tb=[1 2 ; 2 1], Tc=[x y ; y x].
Can I solve the Tc, when I have equation with Ta=Tc * Tb * Tc.
Thank you~!

採用された回答

Sam Chak
Sam Chak 2022 年 6 月 21 日
Maybe you can solve the problem like this?
syms x y
Ta = sym('Ta', [2 2]);
Tb = sym('Tb', [2 2]);
Tc = sym('Tc', [2 2]);
Ta = [sym('3') sym('4'); sym('4') sym('3')]
Ta = 
Tb = [sym('1') sym('2'); sym('2') sym('1')]
Tb = 
Tc = [x y; y x]
Tc = 
Meqn = Ta - Tc*Tb*Tc
Meqn = 
eqns = [Meqn(1, 1) == 0, Meqn(1, 2) == 0];
[xsol, ysol] = solve(eqns)
xsol = 
ysol = 
x = double(xsol)
x = 4×1
-0.2638 -1.2638 1.2638 0.2638
y = double(ysol)
y = 4×1
-1.2638 -0.2638 0.2638 1.2638
% Check if correct
TB = [1 2; 2 1];
TC = [x(3) y(3); y(3) x(3)];
TA = TC*TB*TC
TA = 2×2
3 4 4 3
  1 件のコメント
dhlee
dhlee 2022 年 6 月 21 日
Thank you for your quick solution~! ^^
I installed symbolic math toolbox for using the syms.

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by