Original (English)

cdf(var x): var

Cumulative distribution function; the probability that a Gaussian (normal) distributed variable takes a value less than or equal to x. Often used to compress the variable to the 0..1 range. Sometimes also referred to as pnorm(x).

erf(var x): var

Error function; the probability that a Gaussian (normal) distributed variable falls in the interval [-x, x].

qnorm(var x): var

The inverse cdf function; returns the value whose cumulative distribution matches the probability x.

dnorm(var x, var mu, var sigma): var

Gaussian probability; returns the probability of the value x in a normal distribution with mean mu and variance sigma

Parameters:

x - any var.

Example:

x = cdf(1); // x is now 0.84 
    x = cdf(-1); // x is now 0.16

See also:

sign, abs, randomize

► latest version online

Übersetzung (Deutsch)

cdf(var x): var

Kumulative Verteilungsfunktion; die Wahrscheinlichkeit, dass eine gaußverteilte (normale) Variable einen Wert annimmt, der kleiner oder gleich x ist. Wird oft verwendet, um die Variable auf den Bereich 0..1 zu komprimieren. Manchmal auch als pnorm(x) bezeichnet.

erf(var x): var

Fehlerfunktion; die Wahrscheinlichkeit, dass eine gaußverteilte (normale) Variable im Intervall [-x, x] liegt.

qnorm(var x): var

Die inverse cdf-Funktion; gibt den Wert zurück, dessen kumulative Verteilung der Wahrscheinlichkeit x entspricht.

dnorm(var x, var mu, var sigma): var

Gaußsche Wahrscheinlichkeit; gibt die Wahrscheinlichkeit des Wertes x in einer Normalverteilung mit Mittelwert mu und Varianz sigma zurück.

Parameter:

x - jede var.

Beispiel:

x = cdf(1); // x ist jetzt 0.84 
    x = cdf(-1); // x ist jetzt 0.16

Siehe auch:

sign, abs, randomize

► latest version online