How to make a new matrix out of the combination of 12 matrix

1 view (last 30 days)
I have 12 Matrix each of 401 * 101, i want to make a combination out of them where i can get a new matrix of 401 row where each new column in the new matrix a combination of different columns of the 12 matrix.

Accepted Answer

Shae Morgan
Shae Morgan on 10 Aug 2020
Edited: Shae Morgan on 10 Aug 2020
try concatenating them? Or do you want to add them across? You say "combination" do you mean an average or a sum? We need more information from your question for a good answer.
mat1=rand(401,101);
mat2=rand(401,101);
...
mat12=rand(401,101);
newmat=[mat1 mat2 mat12];
  3 Comments
AHMED ALBELTAGI
AHMED ALBELTAGI on 10 Aug 2020
the values of the final matrix should be the sum of a different columns of the 12 matrix in order to could use them to find the best parameters in my work .

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!