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

2 次查看(过去 30 天)
concatenating matrices

回答(2 个)

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

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by