**This is an old revision of the document!** ----
Write a function ''mysort.m'' that will take in a vector of any size and sort it from least to greatest. Use the strategy of comparing neighbors and swapping them if necessary. If this process is done throughout the entire vector repeatedly enough times, it will work. Write your code so that it does not go through the matrix too many times.