MATLAB - Linear Algebra
Given the matrix
A = [2 0; 0 3];, what is the output of [V,D] = eig(A); D?A = [2 0; 0 3];, what is the output of [V,D] = eig(A); D?A is diagonal with entries 2 and 3, so eigenvalues are 2 and 3.D from eigD is a diagonal matrix with eigenvalues on the diagonal, so D = [2 0; 0 3].15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions