Can we solve this problem without using sort?
显示 更早的评论
. A vector is given by x = [9 –1.5 13.4 13.3 –2.1 4.6 1.1 5 –6.1 10 0.2].
Using conditional statements and loops, write a program that rearranges
the elements of x in order from the smallest to the largest. Do not use MATLAB’s
built-in function sort
回答(2 个)
Cris LaPierre
2020-5-9
编辑:Cris LaPierre
2020-5-9
1 个投票
To answer your qeustion, yes, you can. This is a classic problem in introductory programming classes.
James Tursa
2020-5-9
0 个投票
Introductory programming classes usually start with the bubble sort. See here for the algorithm in pseudo-code:
类别
在 帮助中心 和 File Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!