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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by