Random Vector in decreasing order

3 Ansichten (letzte 30 Tage)
Berkay
Berkay am 29 Aug. 2022
Beantwortet: Matt J am 29 Aug. 2022
I want to create the random column vector with 15 elements, they should be listed in decreased order.
I can create a random clumn vector and then I can sort it in decreased order but is it possible to create it sorted.

Akzeptierte Antwort

Matt J
Matt J am 29 Aug. 2022
There are alternatives to post-sorting, e.g. below, but no randomization function that will just spit out a sorted list.
cumsum(rand(15,1),'reverse')
ans = 15×1
7.5705 6.8873 6.2822 5.6986 5.0179 4.7840 3.9038 2.9921 2.9166 2.6962

Weitere Antworten (0)

Kategorien

Mehr zu Random Number Generation finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by