필터 지우기
필터 지우기

How to do a lower triangular with ones along the diagonal ?

조회 수: 7 (최근 30일)
z m
z m 2017년 11월 26일
댓글: z m 2017년 11월 26일
Hello,
I want to do a lower triangular with ones along the diagonal. for example, I have 62 x 62 matrix of (binary of 1s and 0s) and wants to transfer this matrix to a lower triangular with ones along the diagonal
here, I use zeros for create A= 62 x 62 matrix and used tril(A) to get the lower triangular matrix
A=zeros(62,62);
tril(A);
I get a lower triangular matrix but how to get a lower triangular with ones along the diagonal from matrix A?
please, help me.
Thanks

채택된 답변

Walter Roberson
Walter Roberson 2017년 11월 26일
Extracting the lower triangle from A and setting the main diagonal to 1:
tril(A,-1) + diag(ones(1,size(A,1))
Extracting the lower triangle from A and setting the first diagonal of the lower triangle to 1:
tril(A,-2) + diag(ones(1,size(A,1)-1),-1)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Operating on Diagonal Matrices에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by