フィルターのクリア

create an array with general rules

3 ビュー (過去 30 日間)
Shan  Chu
Shan Chu 2016 年 5 月 18 日
コメント済み: Shan Chu 2016 年 5 月 18 日
Dear all, I am struggling with Matlab, please help me. I want to create an array with some certain rules. Suppose I have an array [1,n]
a=1
b=6
c=4
I1=1
I2=2
I3=3
The rules are the number of I1 in the array is a, the number of I2 is b, the number of I3 is c. So the array should be like:
I=[I1 I2 ... I2 (b elements) I3...I3 (c elements)];
Please don't suggest me to list all the elements in 1 command. This is just an example to illustrate the problem. Thanks
  1 件のコメント
Adam
Adam 2016 年 5 月 18 日
編集済み: Adam 2016 年 5 月 18 日
doc repmat
should help with that.
Or something like
b * ones(1,I2);
etc, though for an extensible solution it would need more thought, but having individual variables named I1, I2, I3 suggests it isn't extensible anyway so if that is the limit of how far you want to go then repmat or ones should work fine.

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2016 年 5 月 18 日
For versions before that use repmat()
  1 件のコメント
Shan  Chu
Shan Chu 2016 年 5 月 18 日
Thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by