Create This Matrix to N-Value

1 回表示 (過去 30 日間)
Allison Bushman
Allison Bushman 2019 年 4 月 16 日
編集済み: Andrei Bobrov 2019 年 4 月 16 日
I am trying to create a matrix that looks like this without having to type out each value. How can I create a matrix like this one, but with the value of n?
The first column changes numbers every N times and the second column cycles through N values.

採用された回答

Andrei Bobrov
Andrei Bobrov 2019 年 4 月 16 日
編集済み: Andrei Bobrov 2019 年 4 月 16 日
n = 3;
out = flip(fullfact([n, n]),2) - 1;
or
[x,y] = ndgrid(0:n-1);
out = [y(:),x(:)];

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by