Rational: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
|||
Zeile 3: | Zeile 3: | ||
===Syntax=== | ===Syntax=== | ||
a/b | |||
rational(a,b) | rational(a,b) | ||
Zeile 14: | Zeile 15: | ||
===Beispiele=== | ===Beispiele=== | ||
<math>rational(2,5)</math> --> returns <math>\frac{2}{5}</math> | <math>rational(2,5)</math> --> returns <math>\frac{2}{5}</math> | ||
<math>2/5</math> --> returns <math>\frac{2}{5}</math> | |||
<math>rational(2,a)</math> --> returns <math>\frac{2}{a}</math> | <math>rational(2,a)</math> --> returns <math>\frac{2}{a}</math> |
Version vom 17. September 2018, 09:17 Uhr
Beschreibung
rational gibt die Dezimalbruchdarstellung zweier Zahlen zurück.
Syntax
a/b rational(a,b)
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
<math>rational(2,5)</math> --> returns <math>\frac{2}{5}</math>
<math>2/5</math> --> returns <math>\frac{2}{5}</math>
<math>rational(2,a)</math> --> returns <math>\frac{2}{a}</math>
<math>rational(a,b)</math> --> returns <math>\frac{a}{b}</math>
<math>rational(sin(a),b)</math> --> returns <math>\frac{sin(a)}{b}</math>
<math>rational(cos(0),a)</math> --> returns <math>\frac{1}{a}</math>