Skip to main content

=

Overloads

NameDescription
(BoolArray lhs = const BoolArray rhs) -> BoolArraySets the BoolArray lhs to the values in the BoolArray rhs.
(IntegerArray lhs = const bool rhs) -> IntegerArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(IntegerArray lhs = const integer rhs) -> IntegerArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(IntegerArray lhs = const IntegerArray rhs) -> IntegerArraySets the IntegerArray lhs to the values in the IntegerArray rhs.
(IntegerArray lhs = const IntegerArray rhs) -> IntegerArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(RealArray lhs = const integer rhs) -> RealArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(RealArray lhs = const real rhs) -> RealArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(RealArray lhs = const bool rhs) -> RealArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(RealArray lhs = const RealMatrix rhs) -> RealArraySets the RealArray lhs to the values in the RealArray rhs.
(RealArray lhs = const IntegerArray rhs) -> RealArraySets the RealArray lhs to the values in the RealArray rhs.
(RealArray lhs = const RealArray rhs) -> RealArraySets the RealArray lhs to the values in the RealArray rhs.
(RealArray lhs = const RealArray rhs) -> RealArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(RealArray lhs = const BoolArray rhs) -> RealArraySets the RealArray lhs to the values in the RealArray rhs.
(BoolArray lhs = const integer rhs) -> BoolArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(BoolArray lhs = const bool rhs) -> BoolArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(BoolArray lhs = const BoolArray rhs) -> BoolArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(ComplexArray lhs = const ComplexArray rhs) -> ComplexArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(ComplexArray lhs = const ComplexArray rhs) -> ComplexArraySets the ComplexArray lhs to the values in the ComplexArray rhs.
(ComplexArray lhs = const BoolArray rhs) -> ComplexArraySets the ComplexArray lhs to the values in the ComplexArray rhs.
(ComplexArray lhs = const RealArray rhs) -> ComplexArraySets the ComplexArray lhs to the values in the ComplexArray rhs.
(ComplexArray lhs = const IntegerArray rhs) -> ComplexArraySets the ComplexArray lhs to the values in the ComplexArray rhs.
(ComplexArray lhs = const ComplexMatrix rhs) -> ComplexArraySets the ComplexArray lhs to the values in the ComplexArray rhs.
(ComplexArray lhs = const RealMatrix rhs) -> ComplexArraySets the ComplexArray lhs to the values in the ComplexArray rhs.
(ComplexArray lhs = const complex rhs) -> ComplexArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(ComplexArray lhs = const bool rhs) -> ComplexArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(ComplexArray lhs = const real rhs) -> ComplexArrayThe = operator assigns the right-hand-side value to the left-hand-side variable.
(ComplexArray lhs = const integer rhs) -> ComplexArrayThe = 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

(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

(ComplexArray lhs = const BoolArray rhs) -> ComplexArray

Sets the ComplexArray lhs to the values in the ComplexArray rhs.

Parameters

(ComplexArray lhs = const RealArray rhs) -> ComplexArray

Sets the ComplexArray lhs to the values in the ComplexArray rhs.

Parameters

(ComplexArray lhs = const IntegerArray rhs) -> ComplexArray

Sets the ComplexArray lhs to the values in the ComplexArray rhs.

Parameters

(ComplexArray lhs = const ComplexMatrix rhs) -> ComplexArray

Sets the ComplexArray lhs to the values in the ComplexArray rhs.

Parameters

(ComplexArray lhs = const RealMatrix rhs) -> ComplexArray

Sets the ComplexArray lhs to the values in the ComplexArray rhs.

Parameters

(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]