=

Assignment operator.

Syntax

var_name = expr

Operand

var_name
A variable that stores the result of the evaluated expression.
expr
A valid scalar or vector expression.

Example

Expressions:
  • a = 2
  • a = {1, 2, 3}
  • a = { {1, 2}, {3, 4} }
  • a = "Hello"
  • a = {"MotionView ", "Templex"}

Comments

The assignment operator assigns the value of expr to var_name.

This operator is not valid when used with curve-editing functions.