How can i find unknown variable in matrix

2 visualizaciones (últimos 30 días)
fatih ayça
fatih ayça el 3 de Mzo. de 2021
Comentada: fatih ayça el 3 de Mzo. de 2021
F=K*D
How can i find D1 D2 in term AE?
  2 comentarios
Walter Roberson
Walter Roberson el 3 de Mzo. de 2021
Is AE a matrix or a scalar constant?
fatih ayça
fatih ayça el 3 de Mzo. de 2021
Lets say AE=1

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 3 de Mzo. de 2021
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.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by