Math Functions

From The K Language Wiki
(Redirected from Exp)

This page documents all math primitives included in K releases.

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

abs[edit]

Gets the absolute value of any number.

 abs -1 1
1 1

sin[edit]

Computes the sine of a value given in radians.

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

cos[edit]

Computes the cosine of a value given in radians.

 cos 12 25 360 24
0.843854 0.9912028 -0.2836911 0.424179

exp[edit]

In monadic form, uses e as the base.

 exp 5
148.4132
 4 5 exp 5 6 
1024 15625f