Inverse of Matrix with condition...

2 次查看(过去 30 天)
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...

采纳的回答

Matt J
Matt J 2018-10-1
编辑:Matt J 2018-10-1
I=(1:8).';
J=I.';
A=tril( (I+J).^2 )

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Elementary Math 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by