Inverse of Matrix with condition...

1 visualización (últimos 30 días)
Md Abu Helal
Md Abu Helal el 1 de Oct. de 2018
Comentada: Md Abu Helal el 1 de Oct. de 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...

Respuesta aceptada

Matt J
Matt J el 1 de Oct. de 2018
Editada: Matt J el 1 de Oct. de 2018
I=(1:8).';
J=I.';
A=tril( (I+J).^2 )

Más respuestas (0)

Categorías

Más información sobre Elementary Math en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by