How can i find unknown variable in matrix

2 次查看(过去 30 天)
F=K*D
How can i find D1 D2 in term AE?

采纳的回答

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