Borrar filtros
Borrar filtros

how can i concatenate matrices of diffrent data types and dimensions?

2 visualizaciones (últimos 30 días)
ck
ck el 18 de Mayo de 2016
Respondida: Image Analyst el 18 de Mayo de 2016
concatenating matrices
  1 comentario
the cyclist
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.

Iniciar sesión para comentar.

Respuestas (2)

Todd Leonhardt
Todd Leonhardt el 18 de Mayo de 2016
You are probably looking for a "cell array": http://www.mathworks.com/help/matlab/cell-arrays.html
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}

Image Analyst
Image Analyst el 18 de Mayo de 2016

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by