Click or drag to resize
MWCellArray Class
MWCellArray derives from MWArray and is the managed representation of the MATLAB cell array. Each element in a cell array is a container that can hold an MWArray or one of its derived types, including another MWCellArray.
Inheritance Hierarchy
SystemObject
  MathWorks.MATLAB.NET.Arrays.nativeMWArray
    MathWorks.MATLAB.NET.Arrays.nativeMWCellArray

Namespace: MathWorks.MATLAB.NET.Arrays.native
Assembly: MWArray (in MWArray.dll) Version: 2.24.1.0 (2.24.1.0)
Syntax
C#
[SerializableAttribute]
public class MWCellArray : MWArray, 
	ICloneable, IEquatable<MWCellArray>

The MWCellArray type exposes the following members.

Constructors
Methods
  NameDescription
Public methodClone
Makes a deep copy of a MATLAB cell array
(Overrides MWArrayClone.)
Protected methodcreateAxisWeightArray (Inherited from MWArray.)
Protected methoddeepCopy (Inherited from MWArray.)
Public methodEquals(Object)
Compares the current MWCellArray instance with the specified cell array for equality; returning a boolean value.
(Overrides MWArrayEquals(Object).)
Public methodEquals(MWCellArray)
Protected methodFinalize (Inherited from Object.)
Protected methodget (Inherited from MWArray.)
Protected methodgetDimsStr (Inherited from MWArray.)
Public methodGetHashCode
Returns the hashcode for the MWCellArray
(Overrides MWArrayGetHashCode.)
Protected methodgetOneBasedIndexForArray (Inherited from MWArray.)
Public methodGetType (Inherited from Object.)
Protected methodinitNativeArray (Inherited from MWArray.)
Protected methodMemberwiseClone (Inherited from Object.)
Protected methodresizeFlatArray (Inherited from MWArray.)
Protected methodset(Int32, Object) (Inherited from MWArray.)
Protected methodset(Int32, Object) (Inherited from MWArray.)
Protected methodsetDims (Inherited from MWArray.)
Protected methodsetFlatArr (Inherited from MWArray.)
Protected methodsetNumOfElem (Inherited from MWArray.)
Public methodToString
Returns a formatted string representing the contents of the MWArray
(Inherited from MWArray.)
Top
Properties
  NameDescription
Public propertyArrayType
Read only property returning the derived type of the MWArray
(Inherited from MWArray.)
Public propertyDimensions
Read only property returning a native integer array containing the size of each dimension of the MWArray.
(Inherited from MWArray.)
Public propertyStatic memberEmpty
Read only property returning a writeable version of an empty MWCellArray.
Public propertyIsCellArray
Returns "true" for an MWCellArray.
(Inherited from MWArray.)
Public propertyIsCharArray
Returns true for an MWCharArray.
(Inherited from MWArray.)
Public propertyIsEmpty
Returns true if the MWArray is empty.
(Inherited from MWArray.)
Public propertyIsLogicalArray
Returns true for an MWLogicalArray.
(Inherited from MWArray.)
Public propertyIsNumericArray
Returns true for an MWNumericArray.
(Inherited from MWArray.)
Public propertyIsStructArray
Returns true for an MWStructArray.
(Inherited from MWArray.)
Public propertyItem
Generic MATLAB array indexer returning the result as an MWArray
Public propertyNumberofDimensions
Read only property returning the number of dimensions in the MWArray.
(Inherited from MWArray.)
Public propertyNumberOfElements
Read only property returning the number of elements in the MWArray.
(Inherited from MWArray.)
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also