Filter löschen
Filter löschen

How to do the following in a simpler and smarter way?

3 Ansichten (letzte 30 Tage)
The following code prepares the labels for some classes. We have standard 12 elements of 1,2,3,...,21 one after another. Now is there any other way to get this array than putting them one by one by hand.
c=[1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,...
4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,...
7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,...
10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,...
12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,...
14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,...
16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,...
18,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,19,19,19,...
20,20,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21];

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 3 Nov. 2013
Bearbeitet: Azzi Abdelmalek am 3 Nov. 2013
C=repmat(1:21,12,1)
C=C(:)'
%or
C=1:21;
C=reshape(C(ones(12,1),:),1,[])

Weitere Antworten (1)

Andrei Bobrov
Andrei Bobrov am 3 Nov. 2013
kron(1:21,ones(1,12))

Kategorien

Mehr zu Matrices and Arrays 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