Solving for unknown matrix X

3 visualizaciones (últimos 30 días)
Jin
Jin el 5 de Abr. de 2023
Respondida: Hiro Yoshino el 5 de Abr. de 2023
Solve matrix equation AXB=C, solve for matrix X
Hey. Can some of you help me with this task? I've tried multiple ways to solve this but I just can't figure out how to solve for the unknown matrix X.
Image inserted.
Thank you.

Respuesta aceptada

Hiro Yoshino
Hiro Yoshino el 5 de Abr. de 2023
I would use a pesudoinverse:
A = [6 4;6 1; 1 2; 6 4]
A = 4×2
6 4 6 1 1 2 6 4
B = [8 8 6 7 5; 8 8 1 6 0; 1 4 3 8 7]
B = 3×5
8 8 6 7 5 8 8 1 6 0 1 4 3 8 7
C = [18042 21288 10716 22446 12924; 12768 15024 7593 15795 9099;...
5351 6332 3174 6697 3854; 18042 21288 10716 22446 12924]
C = 4×5
18042 21288 10716 22446 12924 12768 15024 7593 15795 9099 5351 6332 3174 6697 3854 18042 21288 10716 22446 12924
How about thinking of Moore-Penrose pseudoinverse?
X = pinv(A)*C*pinv(B)
X = 2×3
111.0000 105.0000 107.0000 101.0000 105.0000 110.0000
Check if this works well:
A*X*B - C
ans = 4×5
1.0e-10 * 0.1091 0.1091 0.0364 0.1091 0.0364 0.1091 0.1273 0.0364 0.1091 0.0364 0.0182 0.0182 0.0091 0.0182 0.0045 0.1091 0.1091 0.0364 0.1091 0.0364
Floating-point relative accuracy is given by
eps
ans = 2.2204e-16

Más respuestas (0)

Categorías

Más información sobre Linear Algebra 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