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.

 Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 16 de Abr. de 2019
Editada: Andrei Bobrov el 16 de Abr. de 2019

0 votos

n = 3;
out = flip(fullfact([n, n]),2) - 1;
or
[x,y] = ndgrid(0:n-1);
out = [y(:),x(:)];

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Preguntada:

el 16 de Abr. de 2019

Editada:

el 16 de Abr. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by