std_math
std_math
std_math is an implementation of math functions and variables.
fetch std_math;
bark(math_pi); # output: 3.14159 ...
Number object representing the first 15 digits of PI.
bark(math_pi);
Number object representing the first 15 digits of Euler's number.
bark(math_e);
Returns the value of degrees converted to radians.
bark(math_radians(180));
Returns the value of radians converted to degrees.
bark(math_radians(180));
Returns the absolute value of x.
bark(math_abs(1));
Returns the square root of x.
bark(math_sqrt(25));
Returns the sine value of x, where x is in the radian format.
bark(math_sin(1));
Returns the cosine value of x, where x is in the radian format.
bark(math_cos(1));
Returns the tangent value of x, where x is in the radian format.
bark(math_cos(1));