putting several matrices as one
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
AA
el 10 de Oct. de 2017
Editada: per isakson
el 10 de Oct. de 2017
i have got one matrix with 2 columns and another with 5. i want to put them togehter as one matrix with 7 columns. overall the rows are similar in all of them
0 comentarios
Respuesta aceptada
per isakson
el 10 de Oct. de 2017
Editada: per isakson
el 10 de Oct. de 2017
The matrices must have the same number of rows and have values of the same class.
len = 7;
A1 = ones( len, 2 );
A2 = 2*ones( len, 5 );
M = cat( 2, A1, A2 ); % or shorter [A1,A2]
whos M
returns
Name Size Bytes Class Attributes
M 7x7 392 double
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Function Creation 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!