calculate the inv of a matric with one constant

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 commentaire

Do you have the Symbolic Toolbox? E.g., can you make t a syms object?

Connectez-vous pour commenter.

 Réponse acceptée

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

3 commentaires

MA
MA le 5 Nov 2014
if you want to write this code in command window instead of editor, you don't need syms t
Mahsa
Mahsa le 5 Nov 2014
Thank you :-)
MA
MA le 5 Nov 2014
you're welcome

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Symbolic Math Toolbox dans Centre d'aide et File Exchange

Question posée :

le 5 Nov 2014

Commenté :

MA
le 5 Nov 2014

Community Treasure Hunt

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

Start Hunting!

Translated by