Question: i would like to use an insertion sort method to alphabetically sort a matrix of string in Matlab. For example; a=char('apple','cat','bee') insertionsort(a) ans=apple bee cat
i would like to use an insertion sort method to alphabetically sort a matrix of string in Matlab.
For example;
a=char('apple','cat','bee') insertionsort(a) ans=apple bee cat I am thinking of approaching the code with a comparator function so that within a for loop it will compare the iterated string and sort the matrix. I have trouble figuring how to do so.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
