=
Overloads
| Name | Description |
|---|---|
(BoolArray lhs = const BoolArray rhs) -> BoolArray | Sets the BoolArray lhs to the values in the BoolArray rhs. |
(IntegerArray lhs = const bool rhs) -> IntegerArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(IntegerArray lhs = const integer rhs) -> IntegerArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(IntegerArray lhs = const IntegerArray rhs) -> IntegerArray | Sets the IntegerArray lhs to the values in the IntegerArray rhs. |
(IntegerArray lhs = const IntegerArray rhs) -> IntegerArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(RealArray lhs = const integer rhs) -> RealArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(RealArray lhs = const real rhs) -> RealArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(RealArray lhs = const bool rhs) -> RealArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(RealArray lhs = const RealMatrix rhs) -> RealArray | Sets the RealArray lhs to the values in the RealArray rhs. |
(RealArray lhs = const IntegerArray rhs) -> RealArray | Sets the RealArray lhs to the values in the RealArray rhs. |
(RealArray lhs = const RealArray rhs) -> RealArray | Sets the RealArray lhs to the values in the RealArray rhs. |
(RealArray lhs = const RealArray rhs) -> RealArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(RealArray lhs = const BoolArray rhs) -> RealArray | Sets the RealArray lhs to the values in the RealArray rhs. |
(BoolArray lhs = const integer rhs) -> BoolArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(BoolArray lhs = const bool rhs) -> BoolArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(BoolArray lhs = const BoolArray rhs) -> BoolArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(ComplexArray lhs = const ComplexArray rhs) -> ComplexArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(ComplexArray lhs = const ComplexArray rhs) -> ComplexArray | Sets the ComplexArray lhs to the values in the ComplexArray rhs. |
(ComplexArray lhs = const BoolArray rhs) -> ComplexArray | Sets the ComplexArray lhs to the values in the ComplexArray rhs. |
(ComplexArray lhs = const RealArray rhs) -> ComplexArray | Sets the ComplexArray lhs to the values in the ComplexArray rhs. |
(ComplexArray lhs = const IntegerArray rhs) -> ComplexArray | Sets the ComplexArray lhs to the values in the ComplexArray rhs. |
(ComplexArray lhs = const ComplexMatrix rhs) -> ComplexArray | Sets the ComplexArray lhs to the values in the ComplexArray rhs. |
(ComplexArray lhs = const RealMatrix rhs) -> ComplexArray | Sets the ComplexArray lhs to the values in the ComplexArray rhs. |
(ComplexArray lhs = const complex rhs) -> ComplexArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(ComplexArray lhs = const bool rhs) -> ComplexArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(ComplexArray lhs = const real rhs) -> ComplexArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(ComplexArray lhs = const integer rhs) -> ComplexArray | The = operator assigns the right-hand-side value to the left-hand-side variable. |
(BoolArray lhs = const BoolArray rhs) -> BoolArray
Sets the BoolArray lhs to the values in the BoolArray rhs.
Parameters
(IntegerArray lhs = const bool rhs) -> IntegerArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = IntegerArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = IntegerArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(IntegerArray lhs = const integer rhs) -> IntegerArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = IntegerArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = IntegerArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(IntegerArray lhs = const IntegerArray rhs) -> IntegerArray
Sets the IntegerArray lhs to the values in the IntegerArray rhs.
Parameters
- lhs: The IntegerArray to be updated.
- rhs: The IntegerArray to copy from.
(IntegerArray lhs = const IntegerArray rhs) -> IntegerArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = IntegerArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = IntegerArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(RealArray lhs = const integer rhs) -> RealArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = RealArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = RealArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(RealArray lhs = const real rhs) -> RealArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = RealArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = RealArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(RealArray lhs = const bool rhs) -> RealArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = RealArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = RealArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(RealArray lhs = const RealMatrix rhs) -> RealArray
Sets the RealArray lhs to the values in the RealArray rhs.
Parameters
(RealArray lhs = const IntegerArray rhs) -> RealArray
Sets the RealArray lhs to the values in the RealArray rhs.
Parameters
(RealArray lhs = const RealArray rhs) -> RealArray
Sets the RealArray lhs to the values in the RealArray rhs.
Parameters
(RealArray lhs = const RealArray rhs) -> RealArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = RealArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = RealArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(RealArray lhs = const BoolArray rhs) -> RealArray
Sets the RealArray lhs to the values in the RealArray rhs.
Parameters
(BoolArray lhs = const integer rhs) -> BoolArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = BoolArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = BoolArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(BoolArray lhs = const bool rhs) -> BoolArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = BoolArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = BoolArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(BoolArray lhs = const BoolArray rhs) -> BoolArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = BoolArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = BoolArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(ComplexArray lhs = const ComplexArray rhs) -> ComplexArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = ComplexArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = ComplexArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(ComplexArray lhs = const ComplexArray rhs) -> ComplexArray
Sets the ComplexArray lhs to the values in the ComplexArray rhs.
Parameters
- lhs: The ComplexArray to be updated.
- rhs: The ComplexArray to copy from.
(ComplexArray lhs = const BoolArray rhs) -> ComplexArray
Sets the ComplexArray lhs to the values in the ComplexArray rhs.
Parameters
- lhs: The ComplexArray to be updated.
- rhs: The ComplexArray to copy from.
(ComplexArray lhs = const RealArray rhs) -> ComplexArray
Sets the ComplexArray lhs to the values in the ComplexArray rhs.
Parameters
- lhs: The ComplexArray to be updated.
- rhs: The ComplexArray to copy from.
(ComplexArray lhs = const IntegerArray rhs) -> ComplexArray
Sets the ComplexArray lhs to the values in the ComplexArray rhs.
Parameters
- lhs: The ComplexArray to be updated.
- rhs: The ComplexArray to copy from.
(ComplexArray lhs = const ComplexMatrix rhs) -> ComplexArray
Sets the ComplexArray lhs to the values in the ComplexArray rhs.
Parameters
- lhs: The ComplexArray to be updated.
- rhs: The ComplexArray to copy from.
(ComplexArray lhs = const RealMatrix rhs) -> ComplexArray
Sets the ComplexArray lhs to the values in the ComplexArray rhs.
Parameters
- lhs: The ComplexArray to be updated.
- rhs: The ComplexArray to copy from.
(ComplexArray lhs = const complex rhs) -> ComplexArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = ComplexArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = ComplexArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(ComplexArray lhs = const bool rhs) -> ComplexArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = ComplexArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = ComplexArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(ComplexArray lhs = const real rhs) -> ComplexArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = ComplexArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = ComplexArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]
(ComplexArray lhs = const integer rhs) -> ComplexArray
The = operator assigns the right-hand-side value to the left-hand-side variable.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
Example
var lhs = ComplexArray([[1 .. 5]]) // [1.0, 2.0, 3.0, 4.0]
var rhs = ComplexArray([[1, 1, 1, 1]])
lhs = rhs // [1.0, 1.0, 1.0, 1.0]