MATLAB: Combination problem

combination

Hi suppose I have some values 1 2 3 4.
I want to find all possible combination of these four, taking only two distinct element at a time and store it in a matrix. Is there any one to help me?

Best Answer

It's like?
out = nchoosek(1:4,2)
Related Question