Question: I am using matlab Task 4 (15 points) Write a function that returns the transpose of a given 3x3 matrix without using any of the
Task 4 (15 points) Write a function that returns the transpose of a given 3x3 matrix without using any of the built in functions (e.g. transpose(M) or rot90 (M)) anywhere in your function. Call this function transposemat, it will receive on input argument x whichr fis function or argument x, which is a 3x3 matrix, and will return one output argument Y, which is a 3x3 matrix. Example: s> transposemat ([1 2 3 1 21; 3 5 1]) ans = 3 by s> disp(transposemat ([1 2 3; 1 21: 3 5 1])) s> help transposemat transposemat (x) returns the transpose of matrix x Note: The syntax for your function would be transposemat (fyour_ matrix]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
