cat
Class: matlab.mixin.Heterogeneous
Package: matlab.mixin
Concatenation for heterogeneous arrays
Syntax
C = cat(dim,A,B)
Description
C = cat(
concatenates objects dim
,A
,B
)A
and B
along the dimension dim
. The class of object arrays A
and B
must be derived from the same root class of a matlab.mixin.Heterogeneous
hierarchy.
If
A
andB
are of the same class, the class of the resulting array is unchanged.If
A
andB
are of different subclasses of a common superclass that is derived frommatlab.mixin.Heterogeneous
, then the result is a heterogeneous array and the array's class is that of the most specific superclass shared byA
andB
.
The cat
method is sealed in the class matlab.mixin.Heterogeneous
and, therefore, you cannot override it in subclasses.
Input Arguments
|
Scalar dimension along which to concatenate arrays |
|
Object array derived from the same root subclass of |
|
Object array derived from the same root subclass of |
Output Arguments
|
Array resulting from the specified concatenation. The class of this array is that of the most specific superclass shared by |