Inverse of Matrix with condition...

조회 수: 1 (최근 30일)
Md Abu Helal
Md Abu Helal 2018년 10월 1일
댓글: Md Abu Helal 2018년 10월 1일
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에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by