Variables and Assignments
Symbolic variables are an important component of Maple
x;
Variables are assigned values with the “:=“ operator
x := exp(1.2);
x;
y := ln(x);
y has taken a numeric value, now independent of x
y;
x := 1;
y;
Previous slide
Next slide
Back to first slide
View graphic version