フィルターのクリア

Calculating inverse of non square matrix

5 ビュー (過去 30 日間)
Nirajan Khatri
Nirajan Khatri 2020 年 11 月 25 日
回答済み: Walter Roberson 2020 年 11 月 25 日
I have four 1*2000 matrix like u1, u2, u3, u4 whose each dimensions is 1*2000, i want to find their inverse independently, when i use pinv() code it will find inverse but is that a correct code to find the inverse of non square matrix?

採用された回答

Walter Roberson
Walter Roberson 2020 年 11 月 25 日
u1i = u1.'./ sqrt(sum(u1.^2))
could be said to be the inverse, in that u1 * u1i = 1 if I have worked things correctly and u1 is not all zero.

その他の回答 (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