nchoose2

版本 3.2.0.1 (2.4 KB) 作者: Jos (10584)
all combinations of two elements
2.7K 次下载
更新时间 2019/2/28

查看许可证

NCHOOSE2 - all combinations of two elements

Y = NCHOOSE2(X) returns all combinations of two elements of the array X. It is the fast, vectorized version of NCHOOSEK(X,2). X can be any type of array. When X is a scalar integer > 1, it returns X*(X-1)/2.

Example:
nchoose2([10 20 30 40])
% -> 10 20
% 10 30
% 10 40
% 20 30
% 20 40
% 30 40

nchoose2({'a','b','c','d','e'})
% -> 'a' 'b'
% 'a' 'c'
% ...
% 'c' 'e'
% 'd' 'e'

See also nchoosek, perms
combn, nchoose, allcomb (on the File Exchange)

引用格式

Jos (10584) (2024). nchoose2 (https://www.mathworks.com/matlabcentral/fileexchange/20144-nchoose2), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2018b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Argument Definitions 的更多信息
致谢

参考作品: nCtwo

启发作品: nchoose3, VChooseK

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
3.2.0.1

added image

3.2.0.0

edited internal comments

3.1.0.0

fixed bug for scalar input

3.0.0.0

When X is a scalar integer > 1, it returns X*(X-1)/2.

2.2.0.0

checked for R2017b, fixed comma's

1.0.0.0

fixed error with input having less than 2 elements