Math Functions

From The K Language Wiki
Revision as of 16:14, 13 August 2021 by Razetime (talk | contribs)

This page documents all math primitives included in K releases.

all primitives are right atomic if monadic, fully atomic if dyadic.

abs

Gets the absolute value of any number.

 abs -1 1
1 1

sin

Computes the sine of a value given in radians.

 sin 12 25 360 24
-0.5365729 -0.1323518 0.9589157 -0.9055784

cos

Computes the cosine of a value given in radians.

 cos 12 25 360 24
0.843854 0.9912028 -0.2836911 0.424179

exp

In monadic form, uses e as the base.

 exp 5
148.4132
 4 5 exp 5 6 
1024 15625f