Math Functions: Difference between revisions

From The K Language Wiki
Content added Content deleted
(add oK math primitives)
 
No edit summary
Line 2: Line 2:


all primitives are [[atomicity|right atomic]] if [[monadic]], [[atomicity|fully atomic]] if [[dyadic]].
all primitives are [[atomicity|right atomic]] if [[monadic]], [[atomicity|fully atomic]] if [[dyadic]].
== abs ==

Gets the absolute value of any number.
<pre>
abs -1 1
1 1
</pre>
== sin ==
== sin ==
Computes the sine of a value given in radians.
Computes the sine of a value given in radians.

Revision as of 16:14, 13 August 2021

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