MATLAB: Creating a vector from the diagonal values of a square matrix

creating a vector from the diagonal values of a square matrix

Hello,
Does anybody know how I can read the diagonal values of a square matrix and create a vector (1:n) from those values?
Cheers,
Cyrus

Best Answer

vector=diag(matrix);
check help diag for more detailed information.