Create This Matrix to N-Value

1 Ansicht (letzte 30 Tage)
Allison Bushman
Allison Bushman am 16 Apr. 2019
Bearbeitet: Andrei Bobrov am 16 Apr. 2019
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.

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 16 Apr. 2019
Bearbeitet: Andrei Bobrov am 16 Apr. 2019
n = 3;
out = flip(fullfact([n, n]),2) - 1;
or
[x,y] = ndgrid(0:n-1);
out = [y(:),x(:)];

Weitere Antworten (0)

Kategorien

Mehr zu Data Types finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by