Assignments
Mathematica's symbolic architecture supports a highly generalized notion of assignment, in which you can specify a transformation for any class of expressions defined by a Mathematica pattern. Simple cases correspond to assignments for "variables", "indexed variables" or "structure elements". Other cases define functions or general transformations.
a [ [ i ] ] = v — assign a value to a list/array/expression element
Function Definitions
Forms of Assignment
lhs = rhs — immediate assignment, with
rhs evaluated at the time of assignment
lhs := rhs — delayed assignment, with
rhs reevaluated every time it is used
Clearing Assignments
Clear — clear all values associated with a symbol
Information about Assignments
TUTORIALS
MORE ABOUT
RELATED LINKS