F-Flat

F♭ (pronounced F-flat) is a toy language.


Project maintained by Hypercubed Hosted on GitHub Pages — Theme by mattgraham

Internal Math Words

[src]

re

z -> x

Real part of a value

[src]

im

z -> y

Imaginary part of a value

[src]

arg

z -> a

Argument (polar angle) of a complex number

[src]

abs

x -> x'

Absolute value and complex magnitude

[src]

cos

x -> x'

Cosine of argument in radians

[src]

sin

x -> x'

Sine of argument in radians

[src]

tan

x -> x'

Tangent of argument in radians

[src]

asin

x -> x'

Inverse sine in radians

[src]

atan

x -> x'

Inverse tangent in radians

[src]

round

x -> n

Round to nearest decimal or integer

[src]

floor

x -> n

Round toward negative infinity

[src]

ceil

x -> n

Round toward positive infinity

[src]

sqrt

x -> x'

Square root

[src]

conj

z -> z'

Complex conjugate

[src]

exp

x -> x'

Exponential

[src]

gamma

x -> x'

Gamma function

[src]

atan2

x₁ x₂ -> x₃

Four-quadrant inverse tangent

[src]

erf

x -> x'

Error function

[src]

bit-and

x₁ x₂ -> x₃

bitwise and

[src]

bit-or

x₁ x₂ -> x₃

bitwise or

[src]

bit-xor

x₁ x₂ -> x₃

bitwise xor

[src]

bit-not

x -> x'

bitwise not

[src]

rand

-> x

pseudo-random number in the range [0, 1)

[src]

infinity

-> -Infinity

pushes the value Infinity

[src]

-infinity

-> -Infinity

pushes the value -Infinity

[src]

complexinfinity

-> ComplexInfinity

pushes the value complexinfinity

[src]