calculate the inv of a matric with one constant

1 visualizzazione (ultimi 30 giorni)
Hello all, I have a simple question. Assume that I have the following matrix. How can I find the inv of this matrix based on "t".
m = [3*t 0 0; 1 t o;0 0 t]; Thank you
  1 Commento
James Tursa
James Tursa il 5 Nov 2014
Do you have the Symbolic Toolbox? E.g., can you make t a syms object?

Accedi per commentare.

Risposta accettata

MA
MA il 5 Nov 2014
syms t
m = [3*t 0 0; 1 t 0;0 0 t];
inv(m)
  3 Commenti

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by