kunz Mathematical Functions in VEX

Mathematical Functions in VEX

From kunz
Revision as of 13:19, 29 September 2021 by Admin (talk | contribs)
y = 0; // Constant
y = x; // Linear
y = pow(x,2); // Quadratic, same as: y = x*x;
y = pow(2,x); // Exponential
y = 1.0 / exp(x); // Reciprocal
y = pow(x,0.5); // Square Root, same as: y = sqrt(x);