How can i find unknown variable in matrix

2 ビュー (過去 30 日間)
fatih ayça
fatih ayça 2021 年 3 月 3 日
コメント済み: fatih ayça 2021 年 3 月 3 日
F=K*D
How can i find D1 D2 in term AE?
  2 件のコメント
Walter Roberson
Walter Roberson 2021 年 3 月 3 日
Is AE a matrix or a scalar constant?
fatih ayça
fatih ayça 2021 年 3 月 3 日
Lets say AE=1

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

採用された回答

Walter Roberson
Walter Roberson 2021 年 3 月 3 日
syms D [2 1]
syms AE
sols = solve([0; -2] == AE * [0.405 0.096; 0.096 0.128] * D + [0; 0],D)
sols = struct with fields:
D1: [1×1 sym] D2: [1×1 sym]
simplify([sols.D1; sols.D2])
ans = 
There are other ways that do not require using the symbolic toolbox, if you use the \ operator.
  1 件のコメント
fatih ayça
fatih ayça 2021 年 3 月 3 日
Thank you very much.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumber Theory についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by