文件名称:k 个索引来自 1:n:返回所有可能的 k 个索引的矩阵,它是 C(n,k) 变体-matlab开发
文件大小:2KB
文件格式:ZIP
更新时间:2024-06-21 08:04:48
matlab
http://simulations.narod.ru/ 使用: ind=all_combinations(n,k) 所有可能的变体的数量是 nv=C(n,k)=n!/(k!*(nk)!)(二项式系数) ind 是 nv-by-k 矩阵。 例如,来自 1 2 3 的 2 个索引: all_combinations(3,2) 回答= 1 2 1 3 2 3 来自 5 的示例 3: all_combinations(5,3) 回答= 1 2 3 1 2 4 1 2 5 1 3 4 1 3 5 1 4 5 2 3 4 2 3 5 2 4 5 3 4 5
【文件预览】:
all_combinations.zip