Create This Matrix to N-Value

3 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Data Types 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by