MATLAB - Linear Algebra
What will be the output of the following MATLAB code?
A = [1 2; 3 4];
[U, S, V] = svd(A);
disp(round(U'*U, 2));
A = [1 2; 3 4];
[U, S, V] = svd(A);
disp(round(U'*U, 2));
U is orthogonal, so U'*U equals the identity matrix.round(U'*U, 2)[1 0; 0 1].15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions