Shorten: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
K (→Beispiele) |
K (→Beispiele) |
||
Zeile 14: | Zeile 14: | ||
===Beispiele=== | ===Beispiele=== | ||
shorten(rational(5,10)) --> returns <math>\frac{1}{2}</math> | shorten(rational(5,10)) --> returns <math>\frac{1}{2}</math> | ||
shorten(rational(1,2)) --> returns <math>\frac{1}{2}</math> | shorten(rational(1,2)) --> returns <math>\frac{1}{2}</math> | ||
shorten(rational(10.2)) --> returns 10.2 | shorten(rational(10.2)) --> returns 10.2 | ||
shorten(rational(4*a,2)) --> returns 2*a | shorten(rational(4*a,2)) --> returns 2*a | ||
Version vom 25. September 2018, 09:24 Uhr
Beschreibung
Die Funktion shorten kürzt eine rationale Zahl.
Syntax
shorten(a)
Parameter
Return Value
- Gibt ein Objekt zurück.
Die Rückgabe ist abhängig von der Eingabe. Dabei wird soweit wie möglich die Eingabe ausgerechnet.
Beispiele
shorten(rational(5,10)) --> returns <math>\frac{1}{2}</math> shorten(rational(1,2)) --> returns <math>\frac{1}{2}</math> shorten(rational(10.2)) --> returns 10.2 shorten(rational(4*a,2)) --> returns 2*a