Math Functions

From The K Language Wiki
Revision as of 06:41, 9 July 2022 by Promovicz (talk | contribs) ("Better category ordering, add redirects to categories, fix pseudo-adverb categories")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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