Putting three separate arrays into one new array

2 ビュー (過去 30 日間)
Cody Phillips
Cody Phillips 2021 年 3 月 26 日
コメント済み: Cody Phillips 2021 年 3 月 26 日
Hi. I am sorry if this has been answered 10 million times (I'm not sure what to search to find what I need).
I have three variables that are all 10x1 arrays. I want to create a new variable that is a 10x3 array, but each column has the data from the original three arrays. How do I do this? I tried NewArray = {array1, array2, array3}; but the data looks funny and it doesn't seem to load when I try to make it into a boxplot.
Any help would be greatly appreciated, and thank you for your time.

採用された回答

per isakson
per isakson 2021 年 3 月 26 日
Try
NewArray = [array1, array2, array3];
or
NewArray = horzcat(array1, array2, array3);
instead
  1 件のコメント
Cody Phillips
Cody Phillips 2021 年 3 月 26 日
Ahhhhhh.. It was that simple. Thank you for your help! I appreciate you.

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by