Mathematical Functions in VEX
From kunz
More actions
y = 0; // Constant
y = x; // Linear
y = pow(x,2); // same as: y = x*x;
y = pow(2,x); // Exponential
y = 1.0 / exp(x); // Reciprocal
y = 0; // Constant
y = x; // Linear
y = pow(x,2); // same as: y = x*x;
y = pow(2,x); // Exponential
y = 1.0 / exp(x); // Reciprocal