How to do the following in a simpler and smarter way?
1 回表示 (過去 30 日間)
古いコメントを表示
Stamatis Samaras
2013 年 11 月 3 日
コメント済み: Stamatis Samaras
2013 年 11 月 3 日
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];
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 11 月 3 日
編集済み: Azzi Abdelmalek
2013 年 11 月 3 日
C=repmat(1:21,12,1)
C=C(:)'
%or
C=1:21;
C=reshape(C(ones(12,1),:),1,[])
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!