Inverse of Matrix with condition...

1 Ansicht (letzte 30 Tage)
Md Abu Helal
Md Abu Helal am 1 Okt. 2018
Kommentiert: Md Abu Helal am 1 Okt. 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...

Akzeptierte Antwort

Matt J
Matt J am 1 Okt. 2018
Bearbeitet: Matt J am 1 Okt. 2018
I=(1:8).';
J=I.';
A=tril( (I+J).^2 )

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by