How to stretch matrix

7 ビュー (過去 30 日間)
Yu-Jou Pai
Yu-Jou Pai 2019 年 8 月 1 日
回答済み: Akira Agata 2019 年 8 月 1 日
I am wondering if there is a way to do so...
Suppose I have a 1 x 5 matrix that contains 5 random numbers, x=[2,10,31,24,11]
Now, I would like to make it become y=[2,3,10,11,31,32,24,25,11,12]
that is, add a column next to each column in z, and each of the additional column added carries the value that is +1 of z's value.

採用された回答

Walter Roberson
Walter Roberson 2019 年 8 月 1 日
y = reshape( [x; x+1], [], 1);
  1 件のコメント
Yu-Jou Pai
Yu-Jou Pai 2019 年 8 月 1 日
Thank you

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

その他の回答 (1 件)

Akira Agata
Akira Agata 2019 年 8 月 1 日
Not so sophisticated, but intuitively clear way:
y = repelem(x,2);
y(2:2:end) = y(2:2:end)+1;

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by