With
With({list_of_local_variables}, expr )
evaluates
expr
for thelist_of_local_variables
by replacing the local variables inexpr
.
Examples
>> With({x = a}, (1 + x^2) &)1+a^2&
Related terms
Implementation status
- ✅ - full supported
With({list_of_local_variables}, expr )
evaluates
expr
for thelist_of_local_variables
by replacing the local variables inexpr
.
>> With({x = a}, (1 + x^2) &)1+a^2&