Question: Given matrix C, write a program that sorts each row in the matrix. If the row is an odd numbered row, sort that row from

Given matrix C, write a program that sorts each row in the matrix. If the row is an odd numbered row, sort that row from smallest to largest. If the row is an even numbered row, sort that row from largest to smallest. Once this is completed, create a new matrix of the same size that is populated with the difference between the new values and the original values. For example A_11 is initially 13, but once the first row is sorted it will have a value of -5, so the new matrix will have a value of -18. Display the sorted matrix and the 'difference' matrix to the screen.

Your program must work for any size matrix. You cannot use sort or sum or any such MATLAB functions.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!