Scilab 5.3.3
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
perms
ベクトル要素の全順列
呼び出し手順
y=perms(x)
パラメータ
- x
スカラーまたはベクトル
- y
行列
説明
長さ n
のベクトル x
を指定すると,
perms
はx
の
n
個の要素の全順列
(すなわち,n!
順列)を返します.
y
の大きさはn! x n
となります.
例
x=[4, 7, 10] y=perms(x) x=[1, 5, 2, 5] y=perms(x)
<< factorial | Discrete mathematics | primes >> |