How can I get the secondary diagonal of a matrix?

90 Ansichten (letzte 30 Tage)
Antonio Modugno
Antonio Modugno am 27 Okt. 2020
Kommentiert: Antonio Modugno am 27 Okt. 2020
for exaple:
A=rand(5,5)
diag(A)= main diagonal of matrix A
I want to take the elements A(1,5), A(2,4), A(3,3), A(4,2), A(5,1), (secondary diagonal), and put those ones into a vector without picking each element

Akzeptierte Antwort

Stephen23
Stephen23 am 27 Okt. 2020
diag(fliplr(A))

Weitere Antworten (1)

KSSV
KSSV am 27 Okt. 2020
Bearbeitet: KSSV am 27 Okt. 2020
Read about diag. You can get diagonal elements by using that.
A = rand(5) ;
diag(A)
diag(A,-1)
diag(A,1)
May be you are looking for
iwant = diag(fliplr(A))

Kategorien

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

Tags

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by