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

4 views (last 30 days)
concatenating matrices
  1 Comment
the cyclist
the cyclist on 18 May 2016
This isn't Twitter. Please describe what you are trying to do in some detail, to help us help you.

Sign in to comment.

Answers (2)

Todd Leonhardt
Todd Leonhardt on 18 May 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 on 18 May 2016

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!