How to solve this simple matricial system?

1 回表示 (過去 30 日間)
Elia Paini
Elia Paini 2021 年 6 月 19 日
コメント済み: Elia Paini 2021 年 6 月 20 日
Hi, how can I solve this simple system in Matlab?
A*u = h*G
A: 4x4
u: unknowns vector, but it should be 4x1
h: scalar
G: vector, Nx1
I tried with u = h*G*inv(Au), but u is calculated as a matrix in this way.
Thank you!

採用された回答

Matt J
Matt J 2021 年 6 月 20 日
  1 件のコメント
Elia Paini
Elia Paini 2021 年 6 月 20 日
Exactly! Thank you!

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

その他の回答 (1 件)

Jonas
Jonas 2021 年 6 月 19 日
編集済み: Jonas 2021 年 6 月 19 日
you have to left multiply the matrix not right multiply
inv(A)*A*u=inv(A)*h*G;
leading to
I*u=inv(A)*h*G;
with I being the identy matrix

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by