Translations:Expressions/31/de: Difference between revisions

From FreeCAD Documentation
(Created page with "Diese Funktionen für Rundung, Trunkierung und Modulo werden unterstützt: {| class="wikitable float-right mw-collapsible mw-collapsed" !style="width: 20%;"|Funktion !style="w...")
 
No edit summary
Line 22: Line 22:
|-
|-
| round(x)
| round(x)
| [https://en.wikipedia.org/wiki/Rounding Rounding] to the nearest integer
| [https://de.wikipedia.org/wiki/Rundung Rundung] auf die nächste Ganzzahl
| all
| alle
|-
|-
| trunc(x)
| trunc(x)
| [https://en.wikipedia.org/wiki/Truncation Truncation] to the nearest integer
| [https://de.wikipedia.org/wiki/Trunkierung_(Mathematik) Trunkierung] auf die nächste Ganzzahl (Kürzen auf einer Reihe oder Zahl auf eine gewisse Länge)
| all
| alle
|}
|}

Revision as of 07:28, 6 June 2020

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
|}

Diese Funktionen für Rundung, Trunkierung und Modulo werden unterstützt:

Funktion Beschreibung Wertebereich
abs(x) Betragsfunktion alle
ceil(x) Abrundungsfunktion kleinster ganzzahliger Wert größer oder gleich x alle
floor(x) Aufrundungsfunktion, 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 alle
trunc(x) Trunkierung auf die nächste Ganzzahl (Kürzen auf einer Reihe oder Zahl auf eine gewisse Länge) alle