| Contents | Index |
Concatenation for heterogeneous arrays
C = cat(dim,A,B)
C = cat(dim,A,B) concatenates objects 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 and B are of the same class, the class of the resulting array is unchanged.
If A and B are of different subclasses of a common superclass that is derived from matlab.mixin.Heterogeneous, then the result is a heterogeneous array and the array's class is that of the most specific superclass shared by A and B.
The cat method is sealed in the class matlab.mixin.Heterogeneous and, therefore, you cannot override it in subclasses.
C |
Array resulting from the specified concatenation. The class of this array is that of the most specific superclass shared by A and B. |
| Sealed | true |
To learn about attributes of methods, see Method Attributes in the MATLAB Object-Oriented Programming documentation.
cat | matlab.mixin.Heterogeneous
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |