How can I shuffle matrix without random matrix

Example :
i=6;
A=[1:i];
[1 2 3 4 5 6] n=1
[1 2 3 4 6 5] n=2
[1 2 3 5 4 6] n=3
[1 2 3 5 6 4] n=4
.
[1 3 2 4 5 6] n=24
.
[2 1 3 4 5 6] n=120
.
[6 5 4 3 2 1] n=720 ; factorial(this matrix size)
thank you

 採用された回答

Davide Masiello
Davide Masiello 2022 年 2 月 5 日

0 投票

Hi, MatLab offers a built-in function that computes all the possible permutations of an array.
A = 1:6;
P = perms(A);
For more info you could consult the documentation.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeProblem-Based Optimization Setup についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by