Reference page for Indexable
Contents
- Summary
- this = Indexable(arguments) /this = Indexable(arguments) is a constructor.
- == (EQ) Test handle equality.
- this.get(arguments) Find an Indexable object by name.
- this.get_dimension(arguments) Get dimensions by name.
- this.is_dimension(arguments) Check if dimension exists.
- ~= (NE) Not equal relation for handles.
- this.root(arguments) Root parent.
Summary
Indexable is a class. Documentation for Indexable doc Indexable
PROPERTIES
- Indexable/dimensions is a property.
- Indexable/name is a property.
- Indexable/parent is a property.
METHODS
Class methods are listed below. Inherited methods are not included.
this = Indexable(arguments) /this = Indexable(arguments) is a constructor.
== (EQ) Test handle equality.
Handles are *eq*ual if they are handles for the same object.
H1 == H2 performs element-wise comparisons between handle arrays H1 and H2. H1 and H2 must be of the same dimensions unless one is a scalar. The result is a logical array of the same dimensions, where each element is an element-wise *eq*uality result.
If one of H1 or H2 is scalar, scalar expansion is performed and the result will match the dimensions of the array that is not scalar.
TF = EQ(H1, H2) stores the result in a logical array of the same dimensions.
See also INDEXABLE, INDEXABLE/GE, INDEXABLE/GT, INDEXABLE/LE, INDEXABLE/LT, INDEXABLE/NE Help for Indexable/*eq* is inherited from superclass HANDLE
this.get(arguments) Find an Indexable object by name.
obj = get(this, name)
this.get_dimension(arguments) Get dimensions by name.
this.is_dimension(arguments) Check if dimension exists.
~= (NE) Not equal relation for handles.
Handles are equal if they are handles for the same object and are u*ne*qual otherwise.
H1 ~= H2 performs element-wise comparisons between handle arrays H1 and H2. H1 and H2 must be of the same dimensions unless o*ne* is a scalar. The result is a logical array of the same dimensions, where each element is an element-wise equality result.
If o*ne* of H1 or H2 is scalar, scalar expansion is performed and the result will match the dimensions of the array that is not scalar.
TF = NE(H1, H2) stores the result in a logical array of the same dimensions.
See also INDEXABLE, INDEXABLE/EQ, INDEXABLE/GE, INDEXABLE/GT, INDEXABLE/LE, INDEXABLE/LT Help for Indexable/*ne* is inherited from superclass HANDLE