フィルターのクリア

using Repmat function , obtain repeated specific values

2 ビュー (過去 30 日間)
busra gogen
busra gogen 2022 年 5 月 12 日
コメント済み: busra gogen 2022 年 5 月 12 日
z =[ 93 691 275 142 3 12]
n=6
for i=1:n
a=[1:n]'
b(i)=repmat(a(i),z(i),1)
end
I want to obtain repeated values of a in the matrix b but a(1) should be repeated in z(1) times, and a(2) should be repeated z(2) times. Above code just gived this:
b =
6
6
6
6
6
6
6
6
6
6
6
6
>>

採用された回答

Steven Lord
Steven Lord 2022 年 5 月 12 日
Use repelem.
a = [1 2 3 4]
a = 1×4
1 2 3 4
b = a.^2
b = 1×4
1 4 9 16
c = repelem(b, a)
c = 1×10
1 4 4 9 9 9 16 16 16 16
  1 件のコメント
busra gogen
busra gogen 2022 年 5 月 12 日
thank you, this is exactly what I want..

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by