ベクトルを補間したい

5 vues (au cours des 30 derniers jours)
Osamu Goto
Osamu Goto le 26 Août 2022
例えば、
X=[3 5 1]
を、次のように3倍に増やしたい
Y=[3 3 3 5 5 5 1 1 1]
これを、任意のXについて、任意の倍率で行う演算を、素早く実施したく、教えて下さい。
for文を多用すれば、できることは、わかっています。
  1 commentaire
Osamu Goto
Osamu Goto le 26 Août 2022
自問自答になりましたが、以下で出来ることを理解しました。
Y=[X;X;X];
reshape(Y,1,9)

Connectez-vous pour commenter.

Réponses (3)

Shunichi Kusano
Shunichi Kusano le 26 Août 2022
実はrepelemという関数がありまして、それだと1行でできます。

Genki Uebayashi
Genki Uebayashi le 26 Août 2022
repmatで3行に増やして、reshapeで1行numel列に並び替えでできます。

Hernia Baby
Hernia Baby le 26 Août 2022
repmatrepelem がコピーを増やすものになります。
要素のみを増やす場合は前者、行列として増やす場合は後者をお使いください。
X=[3 5 1];
repelem(X,3)
ans = 1×9
3 3 3 5 5 5 1 1 1
repmat(X,3)
ans = 3×9
3 5 1 3 5 1 3 5 1 3 5 1 3 5 1 3 5 1 3 5 1 3 5 1 3 5 1
今回はrepelemがやりたいことに該当します。

Catégories

En savoir plus sur 行列および配列 dans Help Center et File Exchange

Produits


Version

R2012b

Community Treasure Hunt

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

Start Hunting!