Filter löschen
Filter löschen

How to reflect the element above the diagonal of a matrix to the lower diagonal ?

6 Ansichten (letzte 30 Tage)
How could I reflect all the upper element of a square matrix of size K = 3 to the lower side
Like this ?
Thank you very much

Akzeptierte Antwort

Matt J
Matt J am 17 Jul. 2020
Bearbeitet: Matt J am 17 Jul. 2020
b=triu(a)+triu(a,1).'; %the result
  2 Kommentare
Tuong Nguyen Minh
Tuong Nguyen Minh am 19 Jul. 2020
Why we use triu(a,1).' with the dot instead of triu(a,1)'
When I check it there was not much different, but is this dot usage a prefer engineering practice ?
Matt J
Matt J am 19 Jul. 2020
Bearbeitet: Matt J am 19 Jul. 2020
.' means transpose
Without the dot, it is conjugate tranpose
As long as your matrices are real-valued, they should give the same result.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Operating on Diagonal Matrices finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by