Inverse of Matrix with condition...

1 vue (au cours des 30 derniers jours)
Md Abu Helal
Md Abu Helal le 1 Oct 2018
Commenté : Md Abu Helal le 1 Oct 2018
I need to do the inverse of a lower triangular matrix for which I need to choose elements (a_ij) = (i+j)^2 when i>j. choose the length n=8. I know the inverse of lower triangular matrix but don't know how to choose the elements so that the above conditions are satisfied. Help me please...

Réponse acceptée

Matt J
Matt J le 1 Oct 2018
Modifié(e) : Matt J le 1 Oct 2018
I=(1:8).';
J=I.';
A=tril( (I+J).^2 )
  1 commentaire
Md Abu Helal
Md Abu Helal le 1 Oct 2018
@Matt Thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by