how can i concatenate matrices of diffrent data types and dimensions?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
concatenating matrices
1 comentario
the cyclist
el 18 de Mayo de 2016
This isn't Twitter. Please describe what you are trying to do in some detail, to help us help you.
Respuestas (2)
Todd Leonhardt
el 18 de Mayo de 2016
These are arrays that can contain data of varying types and sizes.
If you have two matrices, say M1 and M2, you can combine them into a cell array like so:
C = {M1 M2}
or
C = {M1; M2}
0 comentarios
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!