Created
August 5, 2019 06:04
-
-
Save tokoro10g/9a3f1109dac72effd06498dffd7e6328 to your computer and use it in GitHub Desktop.
スターリンソートMATLABバージョン
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clear | |
data = [1 2 2 1 1 4 3 9]; | |
data(data<cummax(data))=[] | |
% -> [1 2 2 4 9] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment