diagonal matrix with ones
조회 수: 136 (최근 30일)
이전 댓글 표시
Hello I am trying to do a diagonal inferior matrix with a diagonal of ones but my diagonal have differentes valors. How do i do a matrix with diagonal of ones? Here is my code:
if true
% code
a=[6,9,7;6,2,0;1,8,3]
a=tril(a)
end
댓글 수: 1
Daniel Shub
2013년 3월 8일
What would be really helpful is if in addition to your example input you could tell us what you want the output to be.
답변 (7개)
Sean de Wolski
2013년 3월 8일
편집: Sean de Wolski
2013년 3월 8일
eye(5)
?
more per clarification:
a = tril(magic(3));
a(logical(eye(size(a,1)))) = 1
댓글 수: 0
Leah
2013년 3월 8일
a(eye(3))=1;
like that?
댓글 수: 3
Sean de Wolski
2013년 3월 8일
I'm sure your friendly sales rep would be happy to set you up with a trial :) !
Miroslav Balda
2013년 3월 9일
Your last comment explained how to construct the resulting matrix. You see, how important it is to precisely formulate your question.
Anew = diag(1./diag(A))'*tril(A)
댓글 수: 0
Miroslav Balda
2013년 3월 9일
There is even simpler solutionof your problem:
Anew = diag(diag(A))\tril(A)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Operating on Diagonal Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!