How to Make a Matrix Diagonal with Matlab?

조회 수: 472 (최근 30일)
Hollis Williams
Hollis Williams 2018년 4월 10일
편집: Walter Roberson 2023년 12월 1일
I am working on a quantum mechanics problem and would like to get a 4x4 matrix A into diagonal form such that A=UDU^{-1}. Basically I just need to know the values of D and U required in the expression to make A a diagonal matrix (where D is diagonal) as I can then use it to do an explicit calculation for a matrix exponential. As it is the matrix is not diagonal, so I cannot use the explicit expression for the matrix exponential. Is there a code with Matlab that can calculate D and U simply?
The matrix is 4 x 4 and has elements
1 0 0 1
0 -1 1 0
0 1 -1 0
1 0 0 1

답변 (2개)

Roger Stafford
Roger Stafford 2018년 4월 10일
편집: Walter Roberson 2023년 12월 1일
Call on Matlab's 'svd' function. Read about it at:
or possible you need the 'eig' function at:

Cartwright
Cartwright 2023년 12월 1일
편집: Walter Roberson 2023년 12월 1일
Here's an example MATLAB code: (spam link removed)
% Define your 4x4 matrix A
A = rand(4, 4); % Replace this with your actual matrix
% Compute eigenvalues and eigenvectors
[V, D] = eig(A);
% D is a diagonal matrix containing eigenvalues
% V is a matrix containing the corresponding eigenvectors
% Check if A can be diagonalized
if rank(V) == size(A, 1)
% A can be diagonalized
% Display the diagonal matrix D
disp('Diagonal matrix D:');
disp(D);
% Display the matrix of eigenvectors U
disp('Matrix of eigenvectors U:');
disp(V);
% Check the reconstruction A = U * D * inv(U)
reconstructed_A = V * D * inv(V);
% Display the reconstructed matrix A
disp('Reconstructed matrix A:');
disp(reconstructed_A);
else
disp('Matrix A cannot be diagonalized');
end
Replace the rand(4, 4) with your actual 4x4 matrix A. The code uses eig to compute the eigenvalues (D) and eigenvectors (V). It then checks if A can be diagonalized by verifying that the rank of the matrix of eigenvectors is equal to the size of the matrix. If it can be diagonalized, it displays the diagonal matrix D and the matrix of eigenvectors U.

카테고리

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