Is there a one-line code for this?

1 回表示 (過去 30 日間)
Mitsu
Mitsu 2021 年 6 月 27 日
コメント済み: Mitsu 2021 年 6 月 27 日
% I would like to go from A = [1 1;2 2;3 3;4 4;5 5]
% to A = [1 1;2 2;3 3;4 4;5 5;1 2;2 3;3 4;4 5;5 6];
A = [1 1;2 2;3 3;4 4;5 5];
% Multi-line approach
B = A;
B(:,2) = B(:,2) + 1;
A = [A;B];
clear B
% Is there a way to do this in one line of code? I have to do similar operations multiple times,
% and would like to know if there is a way to do so. Otherwise, I will settle for a function.
% Note that the actual matrices are 1,000,000+ x 30 in size.
% Thank you

採用された回答

Stephen23
Stephen23 2021 年 6 月 27 日
A = [1 1;2 2;3 3;4 4;5 5];
A = [A;A+(0:1)]
A = 10×2
1 1 2 2 3 3 4 4 5 5 1 2 2 3 3 4 4 5 5 6
  3 件のコメント
Stephen23
Stephen23 2021 年 6 月 27 日
"the simplest way is the following then?"
Probably the "simplest way" is just as you show in your question.
If you want to avoid duplicated data, you could create B first then add one to the appropriate (part-)column.
Mitsu
Mitsu 2021 年 6 月 27 日
Understood. Thank you.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by