向量元素的排列
Syntax
P = perms(v)
Description
P = perms(v), 回傳包含 v 中元素所有排列的矩陣,其中 v 為長度 n 的向量。
P = perms(v),
v
n
Examples
perms(2:2:6) 可產生 2,4,6 所有的排列:
perms(2:2:6)
2 4 6 2 6 4 4 2 6 4 6 2 6 4 2 6 2 4
Limitations
函數中的 n 必須小於 15。
See Also
nchoosek, permute, randperm
nchoosek
permute
randperm