How to make a new matrix out of the combination of 12 matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
AHMED ALBELTAGI
el 10 de Ag. de 2020
Comentada: Shae Morgan
el 10 de Ag. de 2020
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.
0 comentarios
Respuesta aceptada
Shae Morgan
el 10 de Ag. de 2020
Editada: Shae Morgan
el 10 de Ag. de 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 comentarios
Shae Morgan
el 10 de Ag. de 2020
A=[1 1 1 ;2 2 2; 3 3 3];
B=[3 3 3; 2 2 2; 1 1 1];
C= A+B
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!