Floor
Floor() rundet x auf das nächstkleinere Vielfache von step[+ offset] ab. Der Standardwert von offset ist 0.
Vergleichbar mit der Funktion ceil, die Werte aufrundet.
Syntax:
Floor(x[, step[, offset]])
Rückgabe Datentyp: numerisch
Beispiele und Ergebnisse:
- Floor( 2,4 ): liefert 0
- Floor( 4,2 ): liefert 4
- Floor( 3.88 , 0.1 ): liefert 3.8
- Floor( 3.88 , 5 ): liefert 0
- Floor( 1.1 , 1 ): liefert 1
- Floor( 1.1 , 1 , 0.5 ): liefert 0.5