We are trying to create a permutation with 1, 0, and -1. We want all the possible combinations. We have five different times. An example is:
t1-1 1 1 -1 -1
t2-1 0 1 -1 -1
t3-1 1 1 -1 -1
t4-1 1 0 -1 0
t5-0 1 0 0 1
These are some of the possible combinations. We want all of the possible combinations. But, we can't think of a way to get this. Can someone help us with this?

 採用された回答

Kelly Kearney
Kelly Kearney 2015 年 7 月 28 日

1 投票

a = cell(5,1);
[a{:}] = ndgrid([-1 0 1]);
a = cat(6, a{:});
a = reshape(a, [], 5);

1 件のコメント

Prasanna Rajbhandari
Prasanna Rajbhandari 2015 年 7 月 29 日
Thank You so much for the help.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by