MATLAB - Linear Algebra
In MATLAB, which syntax correctly computes the transpose of a matrix
A?A?B = A';. B = transpose(A); is also valid MATLAB syntax but less commonly used than the apostrophe operator. B = A.transpose(); is invalid MATLAB syntax. B = A^T; uses a notation not supported in MATLAB.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions