Question: Row sort Write a function called CustomSort that takes an n m 2 D array inMat with random integers between - 1 0 0 and
Row sort
Write a function called CustomSort that takes an D array inMat with random integers between and inclusive and
produces an array called outMat, which consists of sorted values in inMat such that the lowest value in inMat is the position in
outMat. CustomSort orders the remaining elements from left to right on the first row until the last column, progressing with each row.
Hint: The internal functions sort and reshape should be used.
Restrictions: Loops should not be used.
Ex:
Function
function outMat CustomSort inMat
Takes a D array inMat with random integers between inclusively and
and produces an by array outMat that consists of sorts values
in in at such that the lowest value in inMat is the position
the first, and order the remaining elements left to right on
the first row till last column, starting with the next row and so on
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
