Create This Matrix to N-Value

조회 수: 6 (최근 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 CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by