How to solve a system of matrix equations?

5 ビュー (過去 30 日間)
Christoph Müßig
Christoph Müßig 2018 年 12 月 18 日
コメント済み: Matt J 2018 年 12 月 18 日
Given are two lists of 87 3x1 vectors each. I also know that when multiplying a 3x3 matrix by the nth vector of the first list, I get the nth vector of the second list. The 3x3 matrix is ​​the same in all these calculations. So it's a system of equations with 87 equations and I want to solve for the content of the 3x3 matrix. I've tried to approximate the solution with Machine Learning and Curve Fitting, but there are too few equations for that. How could I solve this problem mathematically or approximate the solution with Matlab?
  2 件のコメント
Torsten
Torsten 2018 年 12 月 18 日
In a previous request, you wanted the 3x3 matrix to be a rotation matrix. Is this no longer important ?
Torsten
Torsten 2018 年 12 月 18 日
And the rotation axis in your case passes through the origin ?

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

採用された回答

Matt J
Matt J 2018 年 12 月 18 日
For example, given
A=rand(3,87);
X=rand(3,3);
B=X*A;
you can reconstruct X by doing,
X=B/A;
  3 件のコメント
Christoph Müßig
Christoph Müßig 2018 年 12 月 18 日
Thank you very much, this perfectly solves my question :)
Matt J
Matt J 2018 年 12 月 18 日
You're welcome, but please Accept-click the answer, if that's the case.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by