Skip to main content

*=

Symbol of Operator.

Overloads

NameDescription
(Operator lhs *= const integer rhs) -> OperatorMultiplies an operator by integer scalar, modifying the operator in place.
(Operator lhs *= const real rhs) -> OperatorMultiplies an operator by real scalar, modifying the operator in place.
(Operator lhs *= const complex rhs) -> OperatorMultiplies an operator by complex scalar, modifying the operator in place.

(Operator lhs *= const integer rhs) -> Operator

Multiplies an operator by integer scalar, modifying the operator in place.

Parameters

  • lhs: Left-hand side value.
  • rhs: The scalar value.

(Operator lhs *= const real rhs) -> Operator

Multiplies an operator by real scalar, modifying the operator in place.

Parameters

  • lhs: Left-hand side value.
  • rhs: The scalar value.

(Operator lhs *= const complex rhs) -> Operator

Multiplies an operator by complex scalar, modifying the operator in place.

Parameters

  • lhs: Left-hand side value.
  • rhs: The scalar value.