Avoid reading diagonal and redundant symmetric elements

조회 수: 1 (최근 30일)
Mo H
Mo H 2020년 3월 26일
댓글: Mo H 2020년 3월 29일
Hello,
I would like to create a matlab function that reads matrix elements and print only those elements which are non diagonal and redundant.
For example,
A = [
1 2 3
2 5 6
3 6 7]
The function should only print; 2, 3, 6
Thank you a lot

채택된 답변

Peng Li
Peng Li 2020년 3월 26일
use tril or triu function to get the lower or upper triangular matrix. Or use diag to get nonmain diagonal elements.

추가 답변 (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