Translations:Expressions/31/de: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 9: Line 9:
|-
|-
| ceil(x)
| ceil(x)
| [https://de.wikipedia.org/wiki/Abrundungsfunktion_und_Aufrundungsfunktion Abrundungsfunktion], kleinster ganzzahliger Wert größer oder gleich x
| [https://de.wikipedia.org/wiki/Abrundungsfunktion_und_Aufrundungsfunktion Aufrundungsfunktion], kleinster ganzzahliger Wert größer oder gleich x
| alle
| alle
|-
|-
| floor(x)
| floor(x)
| [https://de.wikipedia.org/wiki/Abrundungsfunktion_und_Aufrundungsfunktion Aufrundungsfunktion], größter ganzzahliger Wert kleiner oder gleich x
| [https://de.wikipedia.org/wiki/Abrundungsfunktion_und_Aufrundungsfunktion Abrundungsfunktion], größter ganzzahliger Wert kleiner oder gleich x
| alle
| alle
|-
|-

Revision as of 06:10, 20 August 2022

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Expressions)
{| class="wikitable"
!style="width: 20%;"|Function
!style="width: 55%;"|Description
!style="width: 25%;"|Input range
|-
| {{incode|abs(x)}}
| [https://en.wikipedia.org/wiki/Absolute_value Absolute value]
| all
|-
| {{incode|ceil(x)}}
| [https://en.wikipedia.org/wiki/Floor_and_ceiling_functions Ceiling function], smallest integer value greater than or equal to x
| all 
|-
| {{incode|floor(x)}}
| [https://en.wikipedia.org/wiki/Floor_and_ceiling_functions Floor function], largest integer value less than or equal to x
| all 
|-
| {{incode|mod(x; y)}}
| [https://en.wikipedia.org/wiki/Remainder Remainder] after dividing ''x'' by ''y'', sign of result is that of the dividend.
| all, except y = 0
|-
| {{incode|round(x)}}
| [https://en.wikipedia.org/wiki/Rounding Rounding] to the nearest integer
| all
|-
| {{incode|trunc(x)}}
| [https://en.wikipedia.org/wiki/Truncation Truncation] to the nearest integer in the direction of zero
| all
|}
Funktion Beschreibung Wertebereich
abs(x) Betragsfunktion alle
ceil(x) Aufrundungsfunktion, kleinster ganzzahliger Wert größer oder gleich x alle
floor(x) Abrundungsfunktion, größter ganzzahliger Wert kleiner oder gleich x alle
mod(x, y) Division mit Rest nach einer Division x durch y alle, außer y = 0
round(x) Rundung auf die nächste Ganzzahl in Richtung Null alle
trunc(x) Trunkierung auf die nächste Ganzzahl (Kürzen auf einer Reihe oder Zahl auf eine gewisse Länge) alle