Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
concatenating matrices
  1 Commento
the cyclist
the cyclist il 18 Mag 2016
This isn't Twitter. Please describe what you are trying to do in some detail, to help us help you.

Accedi per commentare.

Risposte (2)

Todd Leonhardt
Todd Leonhardt il 18 Mag 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 il 18 Mag 2016

Categorie

Scopri di più su Data Type Conversion in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by