TO SUPPORT MY WORK, ORDER A COMMERCIAL LICENSE
THANK YOU!
The tutorial consists of more than 200 live examples from 50 sections given separately for JAVA, C# and C++. Each of the examples can be copied and run on your own environment. In addition, mXparser provides an extensive collection of over 500 built-in math functions, expressions and symbols. Familiarize yourself with the scope and the syntax. Live testing is the best way to learn. Good luck! 🙂
Tutorial Math Collection API spec Download
Below is the code for JAVA, C# (the code for C# is almost identical) and C++. To copy the code, double-click inside the frame.
Case 1: Changing language to German
Java/C# code
// JAVA: import org.mariuszgromada.math.mxparser.*;
// C#: using org.mariuszgromada.math.mxparser;
// ...
// An expression that should return an error
mXparser.disableImpliedMultiplicationMode();
Expression e = new Expression("2pi+3");
// Let's check the error message in English
mXparser.changeLanguageTo("en"); // Changing language to English
mXparser.consolePrintln("---------------");
mXparser.consolePrintln(e.getExpressionString() + " = " + e.calculate());
mXparser.consolePrintln("---------------");
mXparser.consolePrintln("EN:\n" + e.getErrorMessage());
// Let's check the error message in German
mXparser.changeLanguageTo("de"); // Changing language to German
mXparser.consolePrintln("---------------");
mXparser.consolePrintln(e.getExpressionString() + " = " + e.calculate());
mXparser.consolePrintln("---------------");
mXparser.consolePrintln("DE:\n" + e.getErrorMessage());
mXparser.consolePrintln("---------------");
C++ code
#include "org/mariuszgromada/math/mxparser.hpp"
// ...
// An expression that should return an error
mXparser::disableImpliedMultiplicationMode();
ExpressionPtr e = new_Expression("2pi+3");
// Let's check the error message in English
mXparser::changeLanguageTo("en"); // Changing language to English
mXparser::consolePrintln("---------------");
mXparser::consolePrintln(e->getExpressionString() + " = " + e->calculate());
mXparser::consolePrintln("---------------");
mXparser::consolePrintln("EN:\n" + e->getErrorMessage());
// Let's check the error message in German
mXparser::changeLanguageTo("de"); // Changing language to German
mXparser::consolePrintln("---------------");
mXparser::consolePrintln(e->getExpressionString() + " = " + e->calculate());
mXparser::consolePrintln("---------------");
mXparser::consolePrintln("DE:\n" + e->getErrorMessage());
mXparser::consolePrintln("---------------");
Code result
[mXparser-v.6.0.0] ---------------
[mXparser-v.6.0.0] 2pi+3 = NaN
[mXparser-v.6.0.0] ---------------
[mXparser-v.6.0.0] EN:
[2pi+3]: Starting syntax check...
[2pi+3]: Token '2pi', index 1: Invalid token. Possibly missing multiplication operator - try implied multiplication mode.
[2pi+3]: Errors have been found.
[mXparser-v.6.0.0] ---------------
[mXparser-v.6.0.0] 2pi+3 = NaN
[mXparser-v.6.0.0] ---------------
[mXparser-v.6.0.0] DE:
[2pi+3]: Starte Syntaxprüfung...
[2pi+3]: Token '2pi', Index 1: Ungültiges Token. Möglicherweise fehlt der Multiplikationsoperator - versuchen Sie den impliziten Multiplikationsmodus.
[2pi+3]: Es wurden Fehler gefunden.
[mXparser-v.6.0.0] ---------------
Case 2: Help content in German
Java/C# code
// JAVA: import org.mariuszgromada.math.mxparser.*;
// C#: using org.mariuszgromada.math.mxparser;
// ...
/*
* VARIOUS HELPFUL CODE SNIPPETS
*
* If the operating system language is "de", this language will be
* automatically set when library starts. These options can be
* changed by using one of the following methods:
*
* mXparser.disableSelectBestMatchingLanguage();
* mXparser.enableSelectBestMatchingLanguage();
* mXparser.checkIfSelectBestMatchingLanguage();
*
* If you want to load the "de" language regardless of your system settings,
* you can use one of the following options:
*
* mXparser.changeLanguageTo("de");
* mXparser.changeLanguageTo(JAVAL: new Locale("...") / C#: new CultureInfo("..."));
* StringModel.setStringResources(StringResources.bestMatchingLanguage("de"));
* StringModel.setStringResources(StringResources.bestMatchingLanguage(JAVAL: new Locale("...") / C#: new CultureInfo("...")));
*
* If you have set a different language than the one used in the operating
* system, and you would like to return to original setting, please use:
*
* mXparser.changeLanguageToBestMatching();
* mXparser.enableSelectBestMatchingLanguage();
* StringModel.setStringResources(StringResources.bestMatchingLanguage());
*/
// Changing language to German
mXparser.changeLanguageTo("de");
// Getting help content as HTML table
String help = mXparser.getHelpAsHtmlTable();
mXparser.consolePrintln(help);
C++ code
#include "org/mariuszgromada/math/mxparser.hpp"
// ...
/*
* VARIOUS HELPFUL CODE SNIPPETS
*
* If the operating system language is "de", this language will be
* automatically set when library starts. These options can be
* changed by using one of the following methods:
*
* mXparser::disableSelectBestMatchingLanguage();
* mXparser::enableSelectBestMatchingLanguage();
* mXparser::checkIfSelectBestMatchingLanguage();
*
* If you want to load the "de" language regardless of your system settings,
* you can use one of the following options:
*
* mXparser::changeLanguageTo("de");
* StringModel::setStringResources(StringResources.bestMatchingLanguage("de"));
*
* If you have set a different language than the one used in the operating
* system, and you would like to return to original setting, please use:
*
* mXparser::changeLanguageToBestMatching();
* mXparser::enableSelectBestMatchingLanguage();
* StringModel::setStringResources(StringResources::bestMatchingLanguage());
*/
// Changing language to German
mXparser::changeLanguageTo("de");
// Getting help content as HTML table
StringPtr help = mXparser::getHelpAsHtmlTable();
mXparser::consolePrintln(help);
Code result
Schlüsselwort | Typ | Syntax | Seit | Beschreibung |
---|---|---|---|---|
Zahlenliteral | Zahl | -2, 0.2, -002.1, 2.3e10, -.212, 1_2, 2_1_3, b1.111, b2.1001, h.af1,… | 1.0 | Zahlenliteral: Ganzzahl (Seit 1.0): 1, -2; Dezimalzahl (Seit 1.0): 0.2, -0.3, 1.2; Führende Null (Seit 4.1): 001, -002.1; Wissenschaftliche Notation (Seit 4.2): 1.2e-10, 1.2e+10, 2.3E10; Keine führende Null (Seit 4.2): .2, -.212; Brüche (Seit 4.2): 1_2, 2_1_3, -14_3; Andere Zahlensysteme (Seit 4.1): b1.111, b2.1001, b3.12021, -b16.af12, h.af1, -b.1001, o.0127; |
+ | Operator | a + b | 1.0 | Addition – Operator |
– | Operator | a – b | 1.0 | Subtraktion – Operator |
* | Operator | a * b | 1.0 | Multiplikation – Operator |
× | Operator | a × b | 5.0 | Multiplikation – Operator- Unicode-Mathematiksymbol |
⨉ | Operator | a ⨉ b | 5.0 | Multiplikation – Operator- Unicode-Mathematiksymbol |
∙ | Operator | a ∙ b | 5.0 | Multiplikation – Operator- Unicode-Mathematiksymbol |
/ | Operator | a / b | 1.0 | Division – Operator |
: | Operator | a : b | 6.0 | Division – Operator |
÷ | Operator | a ÷ b | 5.0 | Division – Operator- Unicode-Mathematiksymbol |
^ | Operator | a^b | 1.0 | Exponentiation – Operator |
! | Operator | n! | 1.0 | Fakultät – Operator |
# | Operator | a # b | 1.0 | Modulo – Operator |
% | Operator | n% | 4.1 | Prozentsatz – Operator |
^^ | Operator | a^^b | 4.2 | Tetration (Hyper-4, Potenzturm, exponentieller Turm) – Operator |
√ | Operator | √x | 5.0 | Quadratwurzel – Operator- Unicode-Mathematiksymbol |
∛ | Operator | ∛x | 5.0 | Kubikwurzel – Operator- Unicode-Mathematiksymbol |
∜ | Operator | ∜x | 5.0 | Viertelwurzel – Operator- Unicode-Mathematiksymbol |
\ | Operator | a \ b | 6.0 | Ganzzahldivision (Quotient) – Operator |
& | Boolescher Operator | p & q | 1.0 | Logische Konjunktion AND – Boolescher Operator |
∧ | Boolescher Operator | p ∧ q | 5.0 | Logische Konjunktion AND – Boolescher Operator- Unicode-Mathematiksymbol |
&& | Boolescher Operator | p && q | 1.0 | Logische Konjunktion AND – Boolescher Operator |
/\ | Boolescher Operator | p /\ q | 1.0 | Logische Konjunktion AND – Boolescher Operator |
⊼ | Boolescher Operator | p ⊼ q | 5.0 | NAND-Funktion NAND – Boolescher Operator- Unicode-Mathematiksymbol |
~& | Boolescher Operator | p ~& q | 1.0 | NAND-Funktion NAND – Boolescher Operator |
~∧ | Boolescher Operator | p ~∧ q | 5.0 | NAND-Funktion NAND – Boolescher Operator- Unicode-Mathematiksymbol |
¬& | Boolescher Operator | p ¬& q | 5.0 | NAND-Funktion NAND – Boolescher Operator- Unicode-Mathematiksymbol |
¬∧ | Boolescher Operator | p ¬∧ q | 5.0 | NAND-Funktion NAND – Boolescher Operator- Unicode-Mathematiksymbol |
~&& | Boolescher Operator | p ~&& q | 1.0 | NAND-Funktion NAND – Boolescher Operator |
~/\ | Boolescher Operator | p ~/\ q | 1.0 | NAND-Funktion NAND – Boolescher Operator |
¬&& | Boolescher Operator | p ¬&& q | 5.0 | NAND-Funktion NAND – Boolescher Operator- Unicode-Mathematiksymbol |
¬/\ | Boolescher Operator | p ¬/\ q | 5.0 | NAND-Funktion NAND – Boolescher Operator- Unicode-Mathematiksymbol |
| | Boolescher Operator | p | q | 1.0 | Logische Disjunktion OR – Boolescher Operator |
∨ | Boolescher Operator | p ∨ q | 5.0 | Logische Disjunktion OR – Boolescher Operator- Unicode-Mathematiksymbol |
|| | Boolescher Operator | p || q | 1.0 | Logische Disjunktion OR – Boolescher Operator |
\/ | Boolescher Operator | p \/ q | 1.0 | Logische Disjunktion OR – Boolescher Operator |
⊽ | Boolescher Operator | p ⊽ q | 5.0 | Logisches Nicht Oder (gemeinsame Verweigerung) NOR – Boolescher Operator- Unicode-Mathematiksymbol |
~| | Boolescher Operator | p ~| q | 1.0 | Logisches Nicht Oder (gemeinsame Verweigerung) NOR – Boolescher Operator |
~∨ | Boolescher Operator | p ~∨ q | 5.0 | Logisches Nicht Oder (gemeinsame Verweigerung) NOR – Boolescher Operator- Unicode-Mathematiksymbol |
¬| | Boolescher Operator | p ¬| q | 5.0 | Logisches Nicht Oder (gemeinsame Verweigerung) NOR – Boolescher Operator- Unicode-Mathematiksymbol |
¬∨ | Boolescher Operator | p ¬∨ q | 5.0 | Logisches Nicht Oder (gemeinsame Verweigerung) NOR – Boolescher Operator- Unicode-Mathematiksymbol |
~|| | Boolescher Operator | p ~|| q | 1.0 | Logisches Nicht Oder (gemeinsame Verweigerung) NOR – Boolescher Operator |
~\/ | Boolescher Operator | p ~\/ q | 1.0 | Logisches Nicht Oder (gemeinsame Verweigerung) NOR – Boolescher Operator |
¬|| | Boolescher Operator | p ¬|| q | 5.0 | Logisches Nicht Oder (gemeinsame Verweigerung) NOR – Boolescher Operator- Unicode-Mathematiksymbol |
¬\/ | Boolescher Operator | p ¬\/ q | 5.0 | Logisches Nicht Oder (gemeinsame Verweigerung) NOR – Boolescher Operator- Unicode-Mathematiksymbol |
⊻ | Boolescher Operator | p ⊻ q | 5.0 | Exklusives Oder XOR – Boolescher Operator- Unicode-Mathematiksymbol |
(+) | Boolescher Operator | p (+) q | 1.0 | Exklusives Oder XOR – Boolescher Operator |
⇒ | Boolescher Operator | p ⇒ q | 5.0 | Implikation IMP – Boolescher Operator- Unicode-Mathematiksymbol |
–> | Boolescher Operator | p –> q | 1.0 | Implikation IMP – Boolescher Operator |
⇐ | Boolescher Operator | p ⇐ q | 5.0 | Konverse Implikation CIMP – Boolescher Operator- Unicode-Mathematiksymbol |
<– | Boolescher Operator | p <– q | 1.0 | Konverse Implikation CIMP – Boolescher Operator |
⇏ | Boolescher Operator | p ⇏ q | 5.0 | Materiale Nichtimplikation NIMP – Boolescher Operator- Unicode-Mathematiksymbol |
-/> | Boolescher Operator | p -/> q | 1.0 | Materiale Nichtimplikation NIMP – Boolescher Operator |
⇍ | Boolescher Operator | p ⇍ q | 5.0 | Konverse Nichtimplikation CNIMP – Boolescher Operator- Unicode-Mathematiksymbol |
</- | Boolescher Operator | p </- q | 1.0 | Konverse Nichtimplikation CNIMP – Boolescher Operator |
⇔ | Boolescher Operator | p ⇔ q | 5.0 | Logische Äquivalenz EQV – Boolescher Operator- Unicode-Mathematiksymbol |
<-> | Boolescher Operator | p <-> q | 1.0 | Logische Äquivalenz EQV – Boolescher Operator |
~ | Boolescher Operator | ~p | 1.0 | Negation – Boolescher Operator |
¬ | Boolescher Operator | ¬p | 5.0 | Negation – Boolescher Operator- Unicode-Mathematiksymbol |
= | Binäre Beziehung | a = b | 1.0 | Gleichheit – Binäre Beziehung |
== | Binäre Beziehung | a == b | 1.0 | Gleichheit – Binäre Beziehung |
≠ | Binäre Beziehung | a ≠ b | 5.0 | Ungleichung – Binäre Beziehung- Unicode-Mathematiksymbol |
<> | Binäre Beziehung | a <> b | 1.0 | Ungleichung – Binäre Beziehung |
~= | Binäre Beziehung | a ~= b | 1.0 | Ungleichung – Binäre Beziehung |
!= | Binäre Beziehung | a != b | 1.0 | Ungleichung – Binäre Beziehung |
< | Binäre Beziehung | a < b | 1.0 | Kleiner als – Binäre Beziehung |
> | Binäre Beziehung | a > b | 1.0 | Größer als – Binäre Beziehung |
≤ | Binäre Beziehung | a ≤ b | 5.0 | Kleiner oder gleich – Binäre Beziehung- Unicode-Mathematiksymbol |
⋜ | Binäre Beziehung | a ⋜ b | 5.0 | Kleiner oder gleich – Binäre Beziehung- Unicode-Mathematiksymbol |
<= | Binäre Beziehung | a <= b | 1.0 | Kleiner oder gleich – Binäre Beziehung |
≥ | Binäre Beziehung | a ≥ b | 5.0 | Größer oder gleich – Binäre Beziehung- Unicode-Mathematiksymbol |
⋝ | Binäre Beziehung | a ⋝ b | 5.0 | Größer oder gleich – Binäre Beziehung- Unicode-Mathematiksymbol |
>= | Binäre Beziehung | a >= b | 1.0 | Größer oder gleich – Binäre Beziehung |
sin | Unäre Funktion | sin(x) | 1.0 | Trigonometrische Sinus – Unäre Funktion |
cos | Unäre Funktion | cos(x) | 1.0 | Trigonometrische Kosinus – Unäre Funktion |
tg | Unäre Funktion | tg(x) | 1.0 | Trigonometrische Tangente – Unäre Funktion |
tan | Unäre Funktion | tan(x) | 1.0 | Trigonometrische Tangente – Unäre Funktion |
ctg | Unäre Funktion | ctg(x) | 1.0 | Trigonometrische Kotangente – Unäre Funktion |
cot | Unäre Funktion | cot(x) | 1.0 | Trigonometrische Kotangente – Unäre Funktion |
ctan | Unäre Funktion | ctan(x) | 1.0 | Trigonometrische Kotangente – Unäre Funktion |
sec | Unäre Funktion | sec(x) | 1.0 | Trigonometrische Sekante – Unäre Funktion |
csc | Unäre Funktion | csc(x) | 1.0 | Trigonometrische Kosekante – Unäre Funktion |
cosec | Unäre Funktion | cosec(x) | 1.0 | Trigonometrische Kosekante – Unäre Funktion |
asin | Unäre Funktion | asin(x) | 1.0 | Inverse trigonometrische Sinus – Unäre Funktion |
arsin | Unäre Funktion | arsin(x) | 1.0 | Inverse trigonometrische Sinus – Unäre Funktion |
arcsin | Unäre Funktion | arcsin(x) | 1.0 | Inverse trigonometrische Sinus – Unäre Funktion |
acos | Unäre Funktion | acos(x) | 1.0 | Inverse trigonometrische Kosinus – Unäre Funktion |
arcos | Unäre Funktion | arcos(x) | 1.0 | Inverse trigonometrische Kosinus – Unäre Funktion |
arccos | Unäre Funktion | arccos(x) | 1.0 | Inverse trigonometrische Kosinus – Unäre Funktion |
atg | Unäre Funktion | atg(x) | 1.0 | Inverse trigonometrische Tangente – Unäre Funktion |
atan | Unäre Funktion | atan(x) | 1.0 | Inverse trigonometrische Tangente – Unäre Funktion |
arctg | Unäre Funktion | arctg(x) | 1.0 | Inverse trigonometrische Tangente – Unäre Funktion |
arctan | Unäre Funktion | arctan(x) | 1.0 | Inverse trigonometrische Tangente – Unäre Funktion |
actg | Unäre Funktion | actg(x) | 1.0 | Inverse trigonometrische Kotangente – Unäre Funktion |
acot | Unäre Funktion | acot(x) | 1.0 | Inverse trigonometrische Kotangente – Unäre Funktion |
actan | Unäre Funktion | actan(x) | 1.0 | Inverse trigonometrische Kotangente – Unäre Funktion |
arcctg | Unäre Funktion | arcctg(x) | 1.0 | Inverse trigonometrische Kotangente – Unäre Funktion |
arccot | Unäre Funktion | arccot(x) | 1.0 | Inverse trigonometrische Kotangente – Unäre Funktion |
arcctan | Unäre Funktion | arcctan(x) | 1.0 | Inverse trigonometrische Kotangente – Unäre Funktion |
ln | Unäre Funktion | ln(x) | 1.0 | Natürlicher Logarithmus (Basis e) – Unäre Funktion |
log2 | Unäre Funktion | log2(x) | 1.0 | Binärlogarithmus (Basis 2) – Unäre Funktion |
lg | Unäre Funktion | lg(x) | 5.0 | Gemeinlogarithmus (Basis 10) – Unäre Funktion |
log10 | Unäre Funktion | log10(x) | 1.0 | Gemeinlogarithmus (Basis 10) – Unäre Funktion |
rad | Unäre Funktion | rad(x) | 1.0 | Grad zu Radians – Unäre Funktion |
exp | Unäre Funktion | exp(x) | 1.0 | Exponentiell – Unäre Funktion |
sqrt | Unäre Funktion | sqrt(x) | 1.0 | Quadratwurzel – Unäre Funktion |
sinh | Unäre Funktion | sinh(x) | 1.0 | Hyperbolischer Sinus – Unäre Funktion |
cosh | Unäre Funktion | cosh(x) | 1.0 | Hyperbolischer Kosinus – Unäre Funktion |
tgh | Unäre Funktion | tgh(x) | 1.0 | Hyperbolische Tangente – Unäre Funktion |
tanh | Unäre Funktion | tanh(x) | 1.0 | Hyperbolische Tangente – Unäre Funktion |
coth | Unäre Funktion | coth(x) | 1.0 | Hyperbolische Kotangente – Unäre Funktion |
ctgh | Unäre Funktion | ctgh(x) | 1.0 | Hyperbolische Kotangente – Unäre Funktion |
ctanh | Unäre Funktion | ctanh(x) | 1.0 | Hyperbolische Kotangente – Unäre Funktion |
sech | Unäre Funktion | sech(x) | 1.0 | Hyperbolische Sekante – Unäre Funktion |
csch | Unäre Funktion | csch(x) | 1.0 | Hyperbolische Kosekante – Unäre Funktion |
cosech | Unäre Funktion | cosech(x) | 1.0 | Hyperbolische Kosekante – Unäre Funktion |
deg | Unäre Funktion | deg(x) | 1.0 | Radians zu Grad – Unäre Funktion |
abs | Unäre Funktion | abs(x) | 1.0 | Absoluter Wert – Unäre Funktion |
sgn | Unäre Funktion | sgn(x) | 1.0 | Signum – Unäre Funktion |
floor | Unäre Funktion | floor(x) | 1.0 | Abrunden – Unäre Funktion |
ceil | Unäre Funktion | ceil(x) | 1.0 | Aufrunden – Unäre Funktion |
not | Unäre Funktion | not(x) | 1.0 | Negation – Unäre Funktion |
asinh | Unäre Funktion | asinh(x) | 1.0 | Inverse hyperbolische Sinus – Unäre Funktion |
arsinh | Unäre Funktion | arsinh(x) | 1.0 | Inverse hyperbolische Sinus – Unäre Funktion |
arcsinh | Unäre Funktion | arcsinh(x) | 1.0 | Inverse hyperbolische Sinus – Unäre Funktion |
acosh | Unäre Funktion | acosh(x) | 1.0 | Inverse hyperbolische Kosinus – Unäre Funktion |
arcosh | Unäre Funktion | arcosh(x) | 1.0 | Inverse hyperbolische Kosinus – Unäre Funktion |
arccosh | Unäre Funktion | arccosh(x) | 1.0 | Inverse hyperbolische Kosinus – Unäre Funktion |
atgh | Unäre Funktion | atgh(x) | 1.0 | Inverse hyperbolische Tangente – Unäre Funktion |
atanh | Unäre Funktion | atanh(x) | 1.0 | Inverse hyperbolische Tangente – Unäre Funktion |
arctgh | Unäre Funktion | arctgh(x) | 1.0 | Inverse hyperbolische Tangente – Unäre Funktion |
arctanh | Unäre Funktion | arctanh(x) | 1.0 | Inverse hyperbolische Tangente – Unäre Funktion |
acoth | Unäre Funktion | acoth(x) | 1.0 | Inverse hyperbolische Kotangente – Unäre Funktion |
actgh | Unäre Funktion | actgh(x) | 1.0 | Inverse hyperbolische Kotangente – Unäre Funktion |
actanh | Unäre Funktion | actanh(x) | 1.0 | Inverse hyperbolische Kotangente – Unäre Funktion |
arcoth | Unäre Funktion | arcoth(x) | 1.0 | Inverse hyperbolische Kotangente – Unäre Funktion |
arccoth | Unäre Funktion | arccoth(x) | 1.0 | Inverse hyperbolische Kotangente – Unäre Funktion |
arcctgh | Unäre Funktion | arcctgh(x) | 1.0 | Inverse hyperbolische Kotangente – Unäre Funktion |
arcctanh | Unäre Funktion | arcctanh(x) | 1.0 | Inverse hyperbolische Kotangente – Unäre Funktion |
asech | Unäre Funktion | asech(x) | 1.0 | Inverse hyperbolische Sekante – Unäre Funktion |
arsech | Unäre Funktion | arsech(x) | 1.0 | Inverse hyperbolische Sekante – Unäre Funktion |
arcsech | Unäre Funktion | arcsech(x) | 1.0 | Inverse hyperbolische Sekante – Unäre Funktion |
acsch | Unäre Funktion | acsch(x) | 1.0 | Inverse hyperbolische Kosekante – Unäre Funktion |
arcsch | Unäre Funktion | arcsch(x) | 1.0 | Inverse hyperbolische Kosekante – Unäre Funktion |
arccsch | Unäre Funktion | arccsch(x) | 1.0 | Inverse hyperbolische Kosekante – Unäre Funktion |
acosech | Unäre Funktion | acosech(x) | 1.0 | Inverse hyperbolische Kosekante – Unäre Funktion |
arcosech | Unäre Funktion | arcosech(x) | 1.0 | Inverse hyperbolische Kosekante – Unäre Funktion |
arccosech | Unäre Funktion | arccosech(x) | 1.0 | Inverse hyperbolische Kosekante – Unäre Funktion |
Sa | Unäre Funktion | Sa(x) | 1.0 | Sinc (normalisiert) – Unäre Funktion |
sinc | Unäre Funktion | sinc(x) | 1.0 | Sinc (normalisiert) – Unäre Funktion |
Sinc | Unäre Funktion | Sinc(x) | 1.0 | Sinc (nicht normalisiert) – Unäre Funktion |
Bell | Unäre Funktion | Bell(n) | 1.0 | Bell-Zahl – Unäre Funktion |
Luc | Unäre Funktion | Luc(n) | 1.0 | Lucas-Zahl – Unäre Funktion |
Fib | Unäre Funktion | Fib(n) | 1.0 | Fibonacci-Zahl – Unäre Funktion |
harm | Unäre Funktion | harm(n) | 1.0 | Harmonische Zahl – Unäre Funktion |
ispr | Unäre Funktion | ispr(n) | 2.3 | Primzahltest (Ist Zahl eine Primzahl?) – Unäre Funktion |
Pi | Unäre Funktion | Pi(n) | 2.3 | Primzahlzählung π(n) – Unäre Funktion |
Ei | Unäre Funktion | Ei(x) | 2.3 | Exponentielle Integral – Spezielle Funktion Ei(x) – Unäre Funktion |
li | Unäre Funktion | li(x) | 2.3 | Logarithmisches Integral – Spezielle Funktion li(x) – Unäre Funktion |
Li | Unäre Funktion | Li(x) | 2.3 | Versetztes logarithmisches Integral – Spezielle Funktion Li(x) – Unäre Funktion |
erf | Unäre Funktion | erf(x) | 3.0 | Gauß-Fehlerfunktion – Spezielle Funktion erf(x) – Unäre Funktion |
erfc | Unäre Funktion | erfc(x) | 3.0 | Komplementäre Gauß-Fehlerfunktion – Spezielle Funktion erfc(x) – Unäre Funktion |
erfInv | Unäre Funktion | erfInv(x) | 3.0 | Inverse Gauß-Fehlerfunktion – Spezielle Funktion erf⁻¹(y) – Unäre Funktion |
erfcInv | Unäre Funktion | erfcInv(x) | 3.0 | Inverse komplementäre Gauß-Fehlerfunktion – Spezielle Funktion erfc⁻¹(x) – Unäre Funktion |
ulp | Unäre Funktion | ulp(x) | 3.0 | Einheit in der letzten Stelle – Unäre Funktion |
isNaN | Unäre Funktion | isNaN(x) | 4.1 | Gibt wahr zurück, wenn der Wert eine Nicht-Zahl (NaN) ist, sonst falsch (true=1, false=1) – Unäre Funktion |
ndig10 | Unäre Funktion | ndig10(x) | 4.1 | Anzahl der Ziffern im Zahlensystem mit Basis 10 – Unäre Funktion |
nfact | Unäre Funktion | nfact(x) | 4.1 | Primfaktorzerlegung – Anzahl unterschiedlicher Primfaktoren – Unäre Funktion |
arcsec | Unäre Funktion | arcsec(x) | 4.1 | Inverse trigonometrische Sekante – Unäre Funktion |
arccsc | Unäre Funktion | arccsc(x) | 4.1 | Inverse trigonometrische Kosekante – Unäre Funktion |
Gamma | Unäre Funktion | Gamma(x) | 4.2 | Gamma – Spezielle Funktion Γ(s) – Unäre Funktion |
LambW0 | Unäre Funktion | LambW0(x) | 4.2 | Lambert-W, Hauptast 0, auch Produktlogarithmus genannt – Spezielle Funktion W₀(x) – Unäre Funktion |
LambW1 | Unäre Funktion | LambW1(x) | 4.2 | Lambert-W, Ast -1, auch Produktlogarithmus genannt – Spezielle Funktion W₋₁(x) – Unäre Funktion |
sgnGamma | Unäre Funktion | sgnGamma(x) | 4.2 | Signum von Gamma – Spezielle Funktion Γ(s) – Unäre Funktion |
logGamma | Unäre Funktion | logGamma(x) | 4.2 | Log Gamma – Spezielle Funktion lnΓ(s) – Unäre Funktion |
diGamma | Unäre Funktion | diGamma(x) | 4.2 | Digamma als logarithmische Ableitung von Gamma – Spezielle Funktion ψ(x) – Unäre Funktion |
rStud | Unäre Funktion | rStud(v) | 5.0 | Zufallsvariable – Student’sche t-Verteilung – Unäre Funktion |
rChi2 | Unäre Funktion | rChi2(k) | 5.0 | Zufallsvariable – Chi-Quadrat-Verteilung – Unäre Funktion |
log | Binäre Funktion | log(a, b) | 1.0 | Logarithmus – Binäre Funktion |
mod | Binäre Funktion | mod(a, b) | 1.0 | Modulo – Binäre Funktion |
C | Binäre Funktion | C(n, k) | 1.0 | Binomialkoeffizient, Anzahl der k-Kombinationen, die aus einer Menge mit n Elementen gezogen werden können – Binäre Funktion |
nCk | Binäre Funktion | nCk(n, k) | 4.2 | Binomialkoeffizient, Anzahl der k-Kombinationen, die aus einer Menge mit n Elementen gezogen werden können – Binäre Funktion |
Bern | Binäre Funktion | Bern(m, n) | 1.0 | Bernoulli-Zahlen – Binäre Funktion |
Stirl1 | Binäre Funktion | Stirl1(n, k) | 1.0 | Stirling-Zahlen der ersten Art – Binäre Funktion |
Stirl2 | Binäre Funktion | Stirl2(n, k) | 1.0 | Stirling-Zahlen der zweiten Art – Binäre Funktion |
Worp | Binäre Funktion | Worp(n, k) | 1.0 | Worpitzky-Zahl – Binäre Funktion |
Euler | Binäre Funktion | Euler(n, k) | 1.0 | Euler-Zahl – Binäre Funktion |
KDelta | Binäre Funktion | KDelta(i, j) | 1.0 | Kronecker-Delta – Binäre Funktion |
EulerPol | Binäre Funktion | EulerPol(m, x) | 1.0 | Euler-Polynom – Binäre Funktion |
Harm | Binäre Funktion | Harm(x, n) | 1.0 | Harmonische Zahl – Binäre Funktion |
rUni | Binäre Funktion | rUni(a, b) | 3.0 | Zufallsvariable – Gleichförmige kontinuierliche Verteilung U(a,b) – Binäre Funktion |
rUnid | Binäre Funktion | rUnid(a, b) | 3.0 | Zufallsvariable – Gleichförmige diskrete Verteilung U{a,b} – Binäre Funktion |
round | Binäre Funktion | round(x, n) | 3.0 | Runden zur nächsten Ganzzahl – Binäre Funktion |
rNor | Binäre Funktion | rNor(mean, stdv) | 3.0 | Zufallsvariable – Normalverteilung N(μ,σ) – Binäre Funktion |
ndig | Binäre Funktion | ndig(number, base) | 4.1 | Anzahl der Ziffern, die die Zahl im Zahlsystem mit gegebener Basis darstellen – Binäre Funktion |
dig10 | Binäre Funktion | dig10(num, pos) | 4.1 | Ziffer an Position 1 … n (links -> rechts) oder 0 … -(n-1) (rechts -> links) – Zehnersystem – Binäre Funktion |
factval | Binäre Funktion | factval(number, factorid) | 4.1 | Primzerlegung – Faktorwert an Position zwischen 1 … nfact(n) – aufsteigende Reihenfolge nach Faktorwert – Binäre Funktion |
factexp | Binäre Funktion | factexp(number, factorid) | 4.1 | Primzerlegung – Faktorexponent / Vielfachheit an Position zwischen 1 … nfact(n) – aufsteigende Reihenfolge nach Faktorwert – Binäre Funktion |
root | Binäre Funktion | root(rootorder, number) | 4.1 | Wurzel der Ordnung N einer Zahl – Binäre Funktion |
GammaL | Binäre Funktion | GammaL(s, x) | 4.2 | Unterfunktion der unvollständigen Gammafunktion – Spezielle Funktion γ(s,x) – Binäre Funktion |
GammaU | Binäre Funktion | GammaU(s, x) | 4.2 | Oberfunktion der unvollständigen Gammafunktion – Spezielle Funktion Γ(s,x) – Binäre Funktion |
GammaP | Binäre Funktion | GammaP(s, x) | 4.2 | Unterfunktion der regularisierten Gammafunktion P – Spezielle Funktion P(s,x) – Binäre Funktion |
GammaRegL | Binäre Funktion | GammaRegL(s, x) | 4.2 | Unterfunktion der regularisierten Gammafunktion P – Spezielle Funktion P(s,x) – Binäre Funktion |
GammaQ | Binäre Funktion | GammaQ(s, x) | 4.2 | Oberfunktion der regularisierten Gammafunktion Q – Spezielle Funktion Q(s,x) – Binäre Funktion |
GammaRegU | Binäre Funktion | GammaRegU(s, x) | 4.2 | Oberfunktion der regularisierten Gammafunktion Q – Spezielle Funktion Q(s,x) – Binäre Funktion |
nPk | Binäre Funktion | nPk(n, k) | 4.2 | Anzahl der k-Permutationen, die aus einer Menge mit n Elementen gezogen werden können – Binäre Funktion |
Beta | Binäre Funktion | Beta(x, y) | 4.2 | Die Beta, auch Euler-Integral der ersten Art genannt – Spezielle Funktion B(x,y) – Binäre Funktion |
logBeta | Binäre Funktion | logBeta(x, y) | 4.2 | Die Log-Beta, auch Log-Euler-Integral der ersten Art genannt – Spezielle Funktion lnB(x,y) – Binäre Funktion |
pStud | Binäre Funktion | pStud(x, v) | 5.0 | Student’sche t-Verteilung – Wahrscheinlichkeitsverteilungsfunktion – Binäre Funktion |
cStud | Binäre Funktion | cStud(x, v) | 5.0 | Student’sche t-Verteilung – Kumulative Verteilungsfunktion – Binäre Funktion |
qStud | Binäre Funktion | qStud(p, v) | 5.0 | Student’sche t-Verteilung – Quantilfunktion (inverse kumulative Verteilungsfunktion) – Binäre Funktion |
pChi2 | Binäre Funktion | pChi2(x, k) | 5.0 | Chi-Quadrat-Verteilung – Wahrscheinlichkeitsverteilungsfunktion – Binäre Funktion |
cChi2 | Binäre Funktion | cChi2(x, k) | 5.0 | Chi-Quadrat-Verteilung – Kumulative Verteilungsfunktion – Binäre Funktion |
qChi2 | Binäre Funktion | qChi2(p, k) | 5.0 | Chi-Quadrat-Verteilung – Quantilfunktion (inverse kumulative Verteilungsfunktion) – Binäre Funktion |
rFSned | Binäre Funktion | rFSned(d1, d2) | 5.1 | Zufallsvariable – Snedecor’s F-Verteilung (F-Verteilung oder F-Verhältnis, auch bekannt als Fisher-Snedecor-Verteilung) – Binäre Funktion |
if | Ternäre Funktion | if(cond, expr-if-true, expr-if-false) | 1.0 | Wenn – Ternäre Funktion |
chi | Ternäre Funktion | chi(x, a, b) | 1.0 | Charakteristische Funktion für x in (a,b) – Ternäre Funktion |
CHi | Ternäre Funktion | CHi(x, a, b) | 1.0 | Charakteristische Funktion für x in [a,b] – Ternäre Funktion |
Chi | Ternäre Funktion | Chi(x, a, b) | 1.0 | Charakteristische Funktion für x in [a,b) – Ternäre Funktion |
cHi | Ternäre Funktion | cHi(x, a, b) | 1.0 | Charakteristische Funktion für x in (a,b] – Ternäre Funktion |
pUni | Ternäre Funktion | pUni(x, a, b) | 3.0 | Gleichförmige kontinuierliche Verteilung – Wahrscheinlichkeitsverteilungsfunktion U(a,b) – Ternäre Funktion |
cUni | Ternäre Funktion | cUni(a, a, b) | 3.0 | Gleichförmige kontinuierliche Verteilung – Kumulative Verteilungsfunktion U(a,b) – Ternäre Funktion |
qUni | Ternäre Funktion | qUni(q, a, b) | 3.0 | Gleichförmige kontinuierliche Verteilung – Quantilfunktion (inverse kumulative Verteilungsfunktion) U(a,b) – Ternäre Funktion |
pNor | Ternäre Funktion | pNor(x, mean, stdv) | 3.0 | Normalverteilung – Wahrscheinlichkeitsverteilungsfunktion N(μ,σ) – Ternäre Funktion |
cNor | Ternäre Funktion | cNor(x, mean, stdv) | 3.0 | Normalverteilung – Kumulative Verteilungsfunktion N(μ,σ) – Ternäre Funktion |
qNor | Ternäre Funktion | qNor(q, mean, stdv) | 3.0 | Normalverteilung – Quantilfunktion (inverse kumulative Verteilungsfunktion) N(μ,σ) – Ternäre Funktion |
dig | Ternäre Funktion | dig(num, pos, base) | 4.1 | Ziffer an Position 1 … n (links -> rechts) oder 0 … -(n-1) (rechts -> links) – Zahlensystem mit gegebener Basis – Ternäre Funktion |
BetaInc | Ternäre Funktion | BetaInc(x, a, b) | 4.2 | Die unvollständige Beta, auch unvollständiges Euler-Integral der ersten Art genannt – Spezielle Funktion B(x,a,b) – Ternäre Funktion |
BetaI | Ternäre Funktion | BetaI(x, a, b) | 4.2 | Die regularisierte unvollständige Beta (oder regularisierte Beta), auch regularisiertes unvollständiges Euler-Integral der ersten Art genannt – Spezielle Funktion I(x,a,b) – Ternäre Funktion |
BetaReg | Ternäre Funktion | BetaReg(x, a, b) | 4.2 | Die regularisierte unvollständige Beta (oder regularisierte Beta), auch regularisiertes unvollständiges Euler-Integral der ersten Art genannt – Spezielle Funktion I(x,a,b) – Ternäre Funktion |
pFSned | Ternäre Funktion | pFSned(x, d1, d2) | 5.1 | Snedecor’s F-Verteilung (F-Verteilung oder F-Verhältnis, auch bekannt als Fisher-Snedecor-Verteilung) – Wahrscheinlichkeitsverteilungsfunktion – Ternäre Funktion |
cFSned | Ternäre Funktion | cFSned(x, d1, d2) | 5.1 | Snedecor’s F-Verteilung (F-Verteilung oder F-Verhältnis, auch bekannt als Fisher-Snedecor-Verteilung) – Kumulative Verteilungsfunktion – Ternäre Funktion |
qFSned | Ternäre Funktion | qFSned(p, d1, d2) | 5.1 | Snedecor’s F-Verteilung (F-Verteilung oder F-Verhältnis, auch bekannt als Fisher-Snedecor-Verteilung) – Quantilfunktion (inverse kumulative Verteilungsfunktion) – Ternäre Funktion |
iff | Variadische Funktion | iff(cond-1, expr-1; … ; cond-n, expr-n) | 1.0 | Wenn Funktion – Variadische Funktion |
min | Variadische Funktion | min(a1, …, an) | 1.0 | Minimum – Variadische Funktion |
max | Variadische Funktion | max(a1, …, an) | 1.0 | Maximum – Variadische Funktion |
ConFrac | Variadische Funktion | ConFrac(a1, …, an) | 1.0 | Kettenbruch – Variadische Funktion |
ConPol | Variadische Funktion | ConPol(a1, …, an) | 1.0 | Fortgesetztes Polynom – Variadische Funktion |
gcd | Variadische Funktion | gcd(a1, …, an) | 1.0 | Größter gemeinsamer Teiler – Variadische Funktion |
lcm | Variadische Funktion | lcm(a1, …, an) | 1.0 | Kleinstes gemeinsames Vielfaches – Variadische Funktion |
add | Variadische Funktion | add(a1, …, an) | 2.4 | Summierung – Variadische Funktion |
multi | Variadische Funktion | multi(a1, …, an) | 2.4 | Multiplikation – Variadische Funktion |
mean | Variadische Funktion | mean(a1, …, an) | 2.4 | Mittelwert / Durchschnittswert – Variadische Funktion |
var | Variadische Funktion | var(a1, …, an) | 2.4 | Korrektur der Stichprobenvarianz – Variadische Funktion |
std | Variadische Funktion | std(a1, …, an) | 2.4 | Korrektur der Stichprobenstandardabweichung – Variadische Funktion |
rList | Variadische Funktion | rList(a1, …, an) | 3.0 | Zufallszahl aus einer gegebenen Liste von Zahlen – Variadische Funktion |
coalesce | Variadische Funktion | coalesce(a1, …, an) | 4.1 | Gibt den ersten Nicht-NaN-Wert zurück – Variadische Funktion |
or | Variadische Funktion | or(a1, …, an) | 4.1 | Logische Disjunktion (ODER) – variadisch – Variadische Funktion |
and | Variadische Funktion | and(a1, …, an) | 4.1 | Logische Konjunktion (UND) – variadisch – Variadische Funktion |
xor | Variadische Funktion | xor(a1, …, an) | 4.1 | Exklusives Oder (XOR) – variadisch – Variadische Funktion |
argmin | Variadische Funktion | argmin(a1, …, an) | 4.1 | Argumente / Indizes der Minima – Variadische Funktion |
argmax | Variadische Funktion | argmax(a1, …, an) | 4.1 | Argumente / Indizes der Maxima – Variadische Funktion |
med | Variadische Funktion | med(a1, …, an) | 4.1 | Der Stichprobenmedian – Variadische Funktion |
mode | Variadische Funktion | mode(a1, …, an) | 4.1 | Modus – der Wert, der am häufigsten vorkommt – Variadische Funktion |
base | Variadische Funktion | base(b, d1, …, dn) | 4.1 | Gibt die Zahl in der gegebenen Zahlensystembasis zurück, die durch eine Liste von Ziffern dargestellt wird – Variadische Funktion |
ndist | Variadische Funktion | ndist(v1, …, vn) | 4.1 | Anzahl der verschiedenen Werte – Variadische Funktion |
∑ | Kalkulationsoperator | ∑(i, from, to, expr, <by>) | 5.0 | Summation SIGMA – Iterierter Operator Σ – Kalkulationsoperator- Unicode-Mathematiksymbol |
Σ | Kalkulationsoperator | Σ(i, from, to, expr, <by>) | 5.0 | Summation SIGMA – Iterierter Operator Σ – Kalkulationsoperator- Unicode-Mathematiksymbol |
sum | Kalkulationsoperator | sum(i, from, to, expr, <by>) | 1.0 | Summation SIGMA – Iterierter Operator Σ – Kalkulationsoperator |
∏ | Kalkulationsoperator | ∏(i, from, to, expr, <by>) | 5.0 | Produkt PI – Iterierter Operator ∏ – Kalkulationsoperator- Unicode-Mathematiksymbol |
ℿ | Kalkulationsoperator | ℿ(i, from, to, expr, <by>) | 5.0 | Produkt PI – Iterierter Operator ∏ – Kalkulationsoperator- Unicode-Mathematiksymbol |
Π | Kalkulationsoperator | Π(i, from, to, expr, <by>) | 5.0 | Produkt PI – Iterierter Operator ∏ – Kalkulationsoperator- Unicode-Mathematiksymbol |
prod | Kalkulationsoperator | prod(i, from, to, expr, <by>) | 1.0 | Produkt PI – Iterierter Operator ∏ – Kalkulationsoperator |
∫ | Kalkulationsoperator | ∫(expr, arg, from, to) | 5.0 | Bestimmtes Integral ∫ – Kalkulationsoperator- Unicode-Mathematiksymbol |
int | Kalkulationsoperator | int(expr, arg, from, to) | 1.0 | Bestimmtes Integral ∫ – Kalkulationsoperator |
∂ | Kalkulationsoperator | ∂(expr, arg, <point>) | 5.0 | Ableitung ∂ – Kalkulationsoperator- Unicode-Mathematiksymbol |
der | Kalkulationsoperator | der(expr, arg, <point>) | 1.0 | Ableitung ∂ – Kalkulationsoperator |
∂- | Kalkulationsoperator | ∂-(expr, arg, <point>) | 5.0 | Linke Ableitung ∂- – Kalkulationsoperator- Unicode-Mathematiksymbol |
der- | Kalkulationsoperator | der-(expr, arg, <point>) | 1.0 | Linke Ableitung ∂- – Kalkulationsoperator |
∂+ | Kalkulationsoperator | ∂+(expr, arg, <point>) | 5.0 | Rechte Ableitung ∂+ – Kalkulationsoperator- Unicode-Mathematiksymbol |
der+ | Kalkulationsoperator | der+(expr, arg, <point>) | 1.0 | Rechte Ableitung ∂+ – Kalkulationsoperator |
dern | Kalkulationsoperator | dern(expr, n, arg) | 1.0 | n-te Ableitung ∂ⁿ – Kalkulationsoperator |
∆ | Kalkulationsoperator | ∆(expr, arg, <delta>) | 5.0 | Vorwärtsdifferenz ∆ – Kalkulationsoperator- Unicode-Mathematiksymbol |
Δ | Kalkulationsoperator | Δ(expr, arg, <delta>) | 5.0 | Vorwärtsdifferenz ∆ – Kalkulationsoperator- Unicode-Mathematiksymbol |
diff | Kalkulationsoperator | diff(expr, arg, <delta>) | 1.0 | Vorwärtsdifferenz ∆ – Kalkulationsoperator |
∇ | Kalkulationsoperator | ∇(expr, arg, <delta>) | 5.0 | Rückwärtsdifferenz ∇ – Kalkulationsoperator- Unicode-Mathematiksymbol |
difb | Kalkulationsoperator | difb(expr, arg, <delta>) | 1.0 | Rückwärtsdifferenz ∇ – Kalkulationsoperator |
avg | Kalkulationsoperator | avg(i, from, to, expr, <by>) | 2.4 | Durchschnitt – Iterierter Operator – Kalkulationsoperator |
vari | Kalkulationsoperator | vari(i, from, to, expr, <by>) | 2.4 | Bias-korrigierte Stichprobenvarianz – Iterierter Operator – Kalkulationsoperator |
stdi | Kalkulationsoperator | stdi(i, from, to, expr, <by>) | 2.4 | Bias-korrigierte Stichprobenstandardabweichung – Iterierter Operator – Kalkulationsoperator |
mini | Kalkulationsoperator | mini(i, from, to, expr, <by>) | 2.4 | Minimalwert – Iterierter Operator – Kalkulationsoperator |
maxi | Kalkulationsoperator | maxi(i, from, to, expr, <by>) | 2.4 | Maximalwert – Iterierter Operator – Kalkulationsoperator |
solve | Kalkulationsoperator | solve(expr, arg, from, to) | 4.0 | Gleichungslösung (Nullstellensuche) f(x)=0 – Kalkulationsoperator |
π | Konstanter Wert | π | 5.0 | Pi, Zahl von Archimedes oder Ludolph – Mathematische Konstante π – Konstanter Wert- Unicode-Mathematiksymbol |
ℼ | Konstanter Wert | ℼ | 5.0 | Pi, Zahl von Archimedes oder Ludolph – Mathematische Konstante π – Konstanter Wert- Unicode-Mathematiksymbol |
pi | Konstanter Wert | pi | 1.0 | Pi, Zahl von Archimedes oder Ludolph – Mathematische Konstante π – Konstanter Wert |
e | Konstanter Wert | e | 1.0 | Zahl von Napier oder Euler (Basis des natürlichen Logarithmus) – Mathematische Konstante e – Konstanter Wert |
ℯ | Konstanter Wert | ℯ | 5.0 | Zahl von Napier oder Euler (Basis des natürlichen Logarithmus) – Mathematische Konstante e – Konstanter Wert- Unicode-Mathematiksymbol |
ⅇ | Konstanter Wert | ⅇ | 5.0 | Zahl von Napier oder Euler (Basis des natürlichen Logarithmus) – Mathematische Konstante e – Konstanter Wert- Unicode-Mathematiksymbol |
[gam] | Konstanter Wert | [gam] | 1.0 | Euler-Mascheroni-Konstante – Mathematische Konstante γ – Konstanter Wert |
[phi] | Konstanter Wert | [phi] | 1.0 | Goldener Schnitt – Mathematische Konstante φ – Konstanter Wert |
[PN] | Konstanter Wert | [PN] | 1.0 | Plastische Konstante – Mathematische Konstante ρ – Konstanter Wert |
[B*] | Konstanter Wert | [B*] | 1.0 | Embree-Trefethen-Konstante – Mathematische Konstante β* – Konstanter Wert |
[F’d] | Konstanter Wert | [F’d] | 1.0 | Feigenbaum-Delta-Konstante – Mathematische Konstante δ – Konstanter Wert |
[F’a] | Konstanter Wert | [F’a] | 1.0 | Feigenbaum-Alpha-Konstante – Mathematische Konstante α – Konstanter Wert |
[C2] | Konstanter Wert | [C2] | 1.0 | Zwillings-Primzahl-Konstante – Mathematische Konstante ∏₂ – Konstanter Wert |
[M1] | Konstanter Wert | [M1] | 1.0 | Meissel-Mertens-Konstante – Mathematische Konstante M₁, B₁ – Konstanter Wert |
[B2] | Konstanter Wert | [B2] | 1.0 | Brunsche Konstante für Zwillingsprimzahlen – Mathematische Konstante B₂ – Konstanter Wert |
[B4] | Konstanter Wert | [B4] | 1.0 | Brunsche Konstante für Primzahlvierlinge – Mathematische Konstante B₄ – Konstanter Wert |
[BN’L] | Konstanter Wert | [BN’L] | 1.0 | Konstante von de Bruijn-Newman – Mathematische Konstante Λ – Konstanter Wert |
[Kat] | Konstanter Wert | [Kat] | 1.0 | Catalansche Konstante – Mathematische Konstante G – Konstanter Wert |
[K*] | Konstanter Wert | [K*] | 1.0 | Landau-Ramanujan-Konstante – Mathematische Konstante b – Konstanter Wert |
[K.] | Konstanter Wert | [K.] | 1.0 | Viswanathsche Konstante – Mathematische Konstante V – Konstanter Wert |
[B’L] | Konstanter Wert | [B’L] | 1.0 | Legendresche Konstante – Mathematische Konstante B – Konstanter Wert |
[RS’m] | Konstanter Wert | [RS’m] | 1.0 | Ramanujan-Soldner-Konstante – Mathematische Konstante μ – Konstanter Wert |
[EB’e] | Konstanter Wert | [EB’e] | 1.0 | Erdos-Borwein-Konstante – Mathematische Konstante E – Konstanter Wert |
[Bern] | Konstanter Wert | [Bern] | 1.0 | Bernsteinsche Konstante – Mathematische Konstante β – Konstanter Wert |
[GKW’l] | Konstanter Wert | [GKW’l] | 1.0 | Gauss-Kuzmin-Wirsing-Konstante – Mathematische Konstante λ – Konstanter Wert |
[HSM’s] | Konstanter Wert | [HSM’s] | 1.0 | Hafner-Sarnak-McCurley-Konstante – Mathematische Konstante σ – Konstanter Wert |
[lm] | Konstanter Wert | [lm] | 1.0 | Golomb-Dickman-Konstante – Mathematische Konstante λ – Konstanter Wert |
[Cah] | Konstanter Wert | [Cah] | 1.0 | Cahensche Konstante – Mathematische Konstante C – Konstanter Wert |
[Ll] | Konstanter Wert | [Ll] | 1.0 | Laplacesche Grenzkonstante – Mathematische Konstante – Konstanter Wert |
[AG] | Konstanter Wert | [AG] | 1.0 | Alladi-Grinstead-Konstante – Mathematische Konstante – Konstanter Wert |
[L*] | Konstanter Wert | [L*] | 1.0 | Lengyelsche Konstante – Mathematische Konstante Λ – Konstanter Wert |
[L.] | Konstanter Wert | [L.] | 1.0 | Levysche Konstante – Mathematische Konstante – Konstanter Wert |
[Dz3] | Konstanter Wert | [Dz3] | 1.0 | Aperysche Konstante – Mathematische Konstante ζ(3) – Konstanter Wert |
[A3n] | Konstanter Wert | [A3n] | 1.0 | Millsche Konstante – Mathematische Konstante A – Konstanter Wert |
[Bh] | Konstanter Wert | [Bh] | 1.0 | Backhousesche Konstante – Mathematische Konstante B – Konstanter Wert |
[Pt] | Konstanter Wert | [Pt] | 1.0 | Portersche Konstante – Mathematische Konstante C – Konstanter Wert |
[L2] | Konstanter Wert | [L2] | 1.0 | Liebsche quadratische Eis-Konstante – Mathematische Konstante – Konstanter Wert |
[Nv] | Konstanter Wert | [Nv] | 1.0 | Nivensche Konstante – Mathematische Konstante C – Konstanter Wert |
[Ks] | Konstanter Wert | [Ks] | 1.0 | Sierpinskische Konstante – Mathematische Konstante K – Konstanter Wert |
[Kh] | Konstanter Wert | [Kh] | 1.0 | Khinchinsche Konstante – Mathematische Konstante K₀ – Konstanter Wert |
[FR] | Konstanter Wert | [FR] | 1.0 | Fransen-Robinson-Konstante – Mathematische Konstante F – Konstanter Wert |
[La] | Konstanter Wert | [La] | 1.0 | Landausche Konstante – Mathematische Konstante L – Konstanter Wert |
[P2] | Konstanter Wert | [P2] | 1.0 | Parabolische Konstante – Mathematische Konstante P – Konstanter Wert |
[Om] | Konstanter Wert | [Om] | 1.0 | Omega-Konstante – Mathematische Konstante Ω – Konstanter Wert |
[MRB] | Konstanter Wert | [MRB] | 1.0 | MRB-Konstante – Mathematische Konstante S – Konstanter Wert |
[li2] | Konstanter Wert | [li2] | 2.3 | Logarithmisches Integral am Punkt 2 – Mathematische Konstante li(2) – Konstanter Wert |
[EG] | Konstanter Wert | [EG] | 2.3 | Gompertz-Konstante – Mathematische Konstante δ – Konstanter Wert |
Konstanter Wert | 4.0 | Lichtgeschwindigkeit im Vakuum – Physikalische Konstante c [m/s] (m=1, s=1) – Konstanter Wert | ||
[G.] | Konstanter Wert | [G.] | 4.0 | Gravitationskonstante – Physikalische Konstante G (m=1, kg=1, s=1) – Konstanter Wert |
[g] | Konstanter Wert | [g] | 4.0 | Gravitationsbeschleunigung auf der Erde – Physikalische Konstante g [m/s²] (m=1, s=1) – Konstanter Wert |
[hP] | Konstanter Wert | [hP] | 4.0 | Plancksche Konstante – Physikalische Konstante h (m=1, kg=1, s=1) – Konstanter Wert |
[h-] | Konstanter Wert | [h-] | 4.0 | Reduzierte Plancksche Konstante (Dirac-Konstante) – Physikalische Konstante ħ (m=1, kg=1, s=1) – Konstanter Wert |
[lP] | Konstanter Wert | [lP] | 4.0 | Plancksche Länge – Physikalische Konstante lᵖ [m] (m=1) – Konstanter Wert |
[mP] | Konstanter Wert | [mP] | 4.0 | Plancksche Masse – Physikalische Konstante mᵖ [kg] (kg=1) – Konstanter Wert |
[tP] | Konstanter Wert | [tP] | 4.0 | Plancksche Zeit – Physikalische Konstante tᵖ [s] (s=1) – Konstanter Wert |
[ly] | Konstanter Wert | [ly] | 4.0 | Lichtjahr – Astronomische Konstante ly [m] (m=1) – Konstanter Wert |
[au] | Konstanter Wert | [au] | 4.0 | Astronomische Einheit – Astronomische Konstante au, AU [m] (m=1) – Konstanter Wert |
[pc] | Konstanter Wert | [pc] | 4.0 | Parsec – Astronomische Konstante pc [m] (m=1) – Konstanter Wert |
[kpc] | Konstanter Wert | [kpc] | 4.0 | Kiloparsec – Astronomische Konstante kpc [m] (m=1) – Konstanter Wert |
[Earth-R-eq] | Konstanter Wert | [Earth-R-eq] | 4.0 | Äquatorialradius der Erde – Astronomische Konstante Rª⊕ [m] (m=1) – Konstanter Wert |
[Earth-R-po] | Konstanter Wert | [Earth-R-po] | 4.0 | Polaradius der Erde – Astronomische Konstante Rᵇ⊕ [m] (m=1) – Konstanter Wert |
[Earth-R] | Konstanter Wert | [Earth-R] | 4.0 | Mittlerer Erdradius – Astronomische Konstante R⊕ (m=1) – Konstanter Wert |
[Earth-M] | Konstanter Wert | [Earth-M] | 4.0 | Erdmasse – Astronomische Konstante M⊕ [kg] (kg=1) – Konstanter Wert |
[Earth-D] | Konstanter Wert | [Earth-D] | 4.0 | Erde-Sonne Entfernung – Astronomische Konstante – Halbe Hauptachse [m] (m=1) – Konstanter Wert |
[Moon-R] | Konstanter Wert | [Moon-R] | 4.0 | Mittlerer Mondradius – Astronomische Konstante [m] (m=1) – Konstanter Wert |
[Moon-M] | Konstanter Wert | [Moon-M] | 4.0 | Mondmasse – Astronomische Konstante [kg] (kg=1) – Konstanter Wert |
[Moon-D] | Konstanter Wert | [Moon-D] | 4.0 | Mond-Erde Entfernung – Astronomische Konstante – Halbe Hauptachse [m] (m=1) – Konstanter Wert |
[Solar-R] | Konstanter Wert | [Solar-R] | 4.0 | Mittlerer Sonnenradius – Astronomische Konstante R☉ [m] (m=1) – Konstanter Wert |
[Solar-M] | Konstanter Wert | [Solar-M] | 4.0 | Sonnenmasse – Astronomische Konstante M☉ [kg] (kg=1) – Konstanter Wert |
[Mercury-R] | Konstanter Wert | [Mercury-R] | 4.0 | Mittlerer Merkuradius – Astronomische Konstante [m] (m=1) – Konstanter Wert |
[Mercury-M] | Konstanter Wert | [Mercury-M] | 4.0 | Merkurmasse – Astronomische Konstante [kg] (kg=1) – Konstanter Wert |
[Mercury-D] | Konstanter Wert | [Mercury-D] | 4.0 | Merkur-Sonne Entfernung – Astronomische Konstante – Halbe Hauptachse [m] (m=1) – Konstanter Wert |
[Venus-R] | Konstanter Wert | [Venus-R] | 4.0 | Mittlerer Venusradius – Astronomische Konstante [m] (m=1) – Konstanter Wert |
[Venus-M] | Konstanter Wert | [Venus-M] | 4.0 | Venusmasse – Astronomische Konstante [kg] (kg=1) – Konstanter Wert |
[Venus-D] | Konstanter Wert | [Venus-D] | 4.0 | Venus-Sonne Entfernung – Astronomische Konstante – Halbe Hauptachse [m] (m=1) – Konstanter Wert |
[Mars-R] | Konstanter Wert | [Mars-R] | 4.0 | Mittlerer Marsradius – Astronomische Konstante [m] (m=1) – Konstanter Wert |
[Mars-M] | Konstanter Wert | [Mars-M] | 4.0 | Marsmasse – Astronomische Konstante [kg] (kg=1) – Konstanter Wert |
[Mars-D] | Konstanter Wert | [Mars-D] | 4.0 | Mars-Sonne Entfernung – Astronomische Konstante – Halbe Hauptachse [m] (m=1) – Konstanter Wert |
[Jupiter-R] | Konstanter Wert | [Jupiter-R] | 4.0 | Mittlerer Jupiteradius – Astronomische Konstante [m] (m=1) – Konstanter Wert |
[Jupiter-M] | Konstanter Wert | [Jupiter-M] | 4.0 | Jupitermasse – Astronomische Konstante [kg] (kg=1) – Konstanter Wert |
[Jupiter-D] | Konstanter Wert | [Jupiter-D] | 4.0 | Jupiter-Sonne Entfernung – Astronomische Konstante – Halbe Hauptachse [m] (m=1) – Konstanter Wert |
[Saturn-R] | Konstanter Wert | [Saturn-R] | 4.0 | Mittlerer Saturnradius – Astronomische Konstante [m] (m=1) – Konstanter Wert |
[Saturn-M] | Konstanter Wert | [Saturn-M] | 4.0 | Saturnmasse – Astronomische Konstante [kg] (kg=1) – Konstanter Wert |
[Saturn-D] | Konstanter Wert | [Saturn-D] | 4.0 | Saturn-Sonne Entfernung – Astronomische Konstante – Halbe Hauptachse [m] (m=1) – Konstanter Wert |
[Uranus-R] | Konstanter Wert | [Uranus-R] | 4.0 | Mittlerer Uranusradius – Astronomische Konstante [m] (m=1) – Konstanter Wert |
[Uranus-M] | Konstanter Wert | [Uranus-M] | 4.0 | Uranusmasse – Astronomische Konstante [kg] (kg=1) – Konstanter Wert |
[Uranus-D] | Konstanter Wert | [Uranus-D] | 4.0 | Uranus-Sonne Entfernung – Astronomische Konstante – Halbe Hauptachse [m] (m=1) – Konstanter Wert |
[Neptune-R] | Konstanter Wert | [Neptune-R] | 4.0 | Mittlerer Neptunradius – Astronomische Konstante [m] (m=1) – Konstanter Wert |
[Neptune-M] | Konstanter Wert | [Neptune-M] | 4.0 | Neptunmasse – Astronomische Konstante [kg] (kg=1) – Konstanter Wert |
[Neptune-D] | Konstanter Wert | [Neptune-D] | 4.0 | Neptun-Sonne Entfernung – Astronomische Konstante – Halbe Hauptachse [m] (m=1) – Konstanter Wert |
[true] | Konstanter Wert | [true] | 4.1 | Boolescher Wert true, dargestellt als 1 (true=1) – Konstanter Wert |
[false] | Konstanter Wert | [false] | 4.1 | Boolescher Wert false, dargestellt als 0 (false=0) – Konstanter Wert |
[NaN] | Konstanter Wert | [NaN] | 4.1 | Nicht-eine-Zahl – Konstanter Wert |
[Uni] | Zufallsvariable | [Uni] | 3.0 | Gleichförmige kontinuierliche Verteilung U(0,1) – Zufallsvariable |
[Int] | Zufallsvariable | [Int] | 3.0 | Zufällige Ganzzahl – Zufallsvariable |
[Int1] | Zufallsvariable | [Int1] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige Ganzzahl U{-10¹,10¹} – Zufallsvariable |
[Int2] | Zufallsvariable | [Int2] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige Ganzzahl U{-10²,10²} – Zufallsvariable |
[Int3] | Zufallsvariable | [Int3] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige Ganzzahl U{-10³,10³} – Zufallsvariable |
[Int4] | Zufallsvariable | [Int4] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige Ganzzahl U{-10⁴,10⁴} – Zufallsvariable |
[Int5] | Zufallsvariable | [Int5] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige Ganzzahl U{-10⁵,10⁵} – Zufallsvariable |
[Int6] | Zufallsvariable | [Int6] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige Ganzzahl U{-10⁶,10⁶} – Zufallsvariable |
[Int7] | Zufallsvariable | [Int7] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige Ganzzahl U{-10⁷,10⁷} – Zufallsvariable |
[Int8] | Zufallsvariable | [Int8] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige Ganzzahl U{-10⁸,10⁸} – Zufallsvariable |
[Int9] | Zufallsvariable | [Int9] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige Ganzzahl U{-10⁹,10⁹} – Zufallsvariable |
[nat] | Zufallsvariable | [nat] | 3.0 | Zufällige natürliche Zahl einschließlich 0 – Zufallsvariable |
[nat1] | Zufallsvariable | [nat1] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl einschließlich 0 U{0,10¹} – Zufallsvariable |
[nat2] | Zufallsvariable | [nat2] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl einschließlich 0 U{0,10²} – Zufallsvariable |
[nat3] | Zufallsvariable | [nat3] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl einschließlich 0 U{0,10³} – Zufallsvariable |
[nat4] | Zufallsvariable | [nat4] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl einschließlich 0 U{0,10⁴} – Zufallsvariable |
[nat5] | Zufallsvariable | [nat5] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl einschließlich 0 U{0,10⁵} – Zufallsvariable |
[nat6] | Zufallsvariable | [nat6] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl einschließlich 0 U{0,10⁶} – Zufallsvariable |
[nat7] | Zufallsvariable | [nat7] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl einschließlich 0 U{0,10⁷} – Zufallsvariable |
[nat8] | Zufallsvariable | [nat8] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl einschließlich 0 U{0,10⁸} – Zufallsvariable |
[nat9] | Zufallsvariable | [nat9] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl einschließlich 0 U{0,10⁹} – Zufallsvariable |
[Nat] | Zufallsvariable | [Nat] | 3.0 | Zufällige natürliche Zahl – Zufallsvariable |
[Nat1] | Zufallsvariable | [Nat1] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl U{1,10¹} – Zufallsvariable |
[Nat2] | Zufallsvariable | [Nat2] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl U{1,10²} – Zufallsvariable |
[Nat3] | Zufallsvariable | [Nat3] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl U{1,10³} – Zufallsvariable |
[Nat4] | Zufallsvariable | [Nat4] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl U{1,10⁴} – Zufallsvariable |
[Nat5] | Zufallsvariable | [Nat5] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl U{1,10⁵} – Zufallsvariable |
[Nat6] | Zufallsvariable | [Nat6] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl U{1,10⁶} – Zufallsvariable |
[Nat7] | Zufallsvariable | [Nat7] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl U{1,10⁷} – Zufallsvariable |
[Nat8] | Zufallsvariable | [Nat8] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl U{1,10⁸} – Zufallsvariable |
[Nat9] | Zufallsvariable | [Nat9] | 3.0 | Gleichförmige diskrete Verteilung – Zufällige natürliche Zahl U{1,10⁹} – Zufallsvariable |
[Nor] | Zufallsvariable | [Nor] | 3.0 | Normalverteilung N(0,1) – Zufallsvariable |
@~ | Bitweiser Operator | @~a | 4.0 | Bitweise einstellige Komplementbildung (NOT) – Bitweiser Operator |
@& | Bitweiser Operator | a @& b | 4.0 | Bitweises Und (AND) AND – Bitweiser Operator |
@^ | Bitweiser Operator | a @^ b | 4.0 | Bitweises exklusives Oder (XOR) XOR – Bitweiser Operator |
@| | Bitweiser Operator | a @| b | 4.0 | Bitweises inklusives Oder (OR) OR – Bitweiser Operator |
@<< | Bitweiser Operator | a @<< b | 4.0 | Bitweise Signierter Linksverschiebung – Bitweiser Operator |
@>> | Bitweiser Operator | a @>> b | 4.0 | Bitweise Signierter Rechtsverschiebung – Bitweiser Operator |
@~& | Bitweiser Operator | a @~& b | 6.0 | Bitweises Nicht-Und (NAND) – Bitweiser Operator |
@~| | Bitweiser Operator | a @~| b | 6.0 | Bitweises Nicht-Oder (NOR) – Bitweiser Operator |
@~^ | Bitweiser Operator | a @~^ b | 6.0 | Bitweises exklusives Nicht-Oder (XNOR) – Bitweiser Operator |
[%] | Einheit | [%] | 4.0 | Prozentsatz – Verhältnis / Bruch = 0.01 – Dimensionslose Einheit |
[%%] | Einheit | [%%] | 4.0 | Promille – Verhältnis / Bruch = 0.001 – Dimensionslose Einheit |
[Y] | Einheit | [Y] | 4.0 | Septillion / Yotta – Metrisches Präfix = 10²⁴ – Dimensionslose Einheit |
[sept] | Einheit | [sept] | 4.0 | Septillion / Yotta – Metrisches Präfix = 10²⁴ – Dimensionslose Einheit |
[Z] | Einheit | [Z] | 4.0 | Sextillion / Zetta – Metrisches Präfix = 10²¹ – Dimensionslose Einheit |
[sext] | Einheit | [sext] | 4.0 | Sextillion / Zetta – Metrisches Präfix = 10²¹ – Dimensionslose Einheit |
[E] | Einheit | [E] | 4.0 | Quintillion / Exa – Metrisches Präfix = 10¹⁸ – Dimensionslose Einheit |
[quint] | Einheit | [quint] | 4.0 | Quintillion / Exa – Metrisches Präfix = 10¹⁸ – Dimensionslose Einheit |
[P] | Einheit | [P] | 4.0 | Quadrillion / Peta – Metrisches Präfix = 10¹⁵ – Dimensionslose Einheit |
[quad] | Einheit | [quad] | 4.0 | Quadrillion / Peta – Metrisches Präfix = 10¹⁵ – Dimensionslose Einheit |
[T] | Einheit | [T] | 4.0 | Billion / Tera – Metrisches Präfix = 10¹² – Dimensionslose Einheit |
[tril] | Einheit | [tril] | 4.0 | Billion / Tera – Metrisches Präfix = 10¹² – Dimensionslose Einheit |
[G] | Einheit | [G] | 4.0 | Milliarde / Giga – Metrisches Präfix = 10⁹ – Dimensionslose Einheit |
[bil] | Einheit | [bil] | 4.0 | Milliarde / Giga – Metrisches Präfix = 10⁹ – Dimensionslose Einheit |
[M] | Einheit | [M] | 4.0 | Million / Mega – Metrisches Präfix = 10⁶ – Dimensionslose Einheit |
[mil] | Einheit | [mil] | 4.0 | Million / Mega – Metrisches Präfix = 10⁶ – Dimensionslose Einheit |
[k] | Einheit | [k] | 4.0 | Tausend / Kilo – Metrisches Präfix = 10³ – Dimensionslose Einheit |
[th] | Einheit | [th] | 4.0 | Tausend / Kilo – Metrisches Präfix = 10³ – Dimensionslose Einheit |
[hund] | Einheit | [hund] | 4.0 | Hundert / Hecto – Metrisches Präfix = 10² – Dimensionslose Einheit |
[hecto] | Einheit | [hecto] | 4.0 | Hundert / Hecto – Metrisches Präfix = 10² – Dimensionslose Einheit |
[ten] | Einheit | [ten] | 4.0 | Zehn / Deca – Metrisches Präfix = 10 – Dimensionslose Einheit |
[deca] | Einheit | [deca] | 4.0 | Zehn / Deca – Metrisches Präfix = 10 – Dimensionslose Einheit |
[deci] | Einheit | [deci] | 4.0 | Zehntel / Deci – Metrisches Präfix = 10⁻¹ – Dimensionslose Einheit |
[centi] | Einheit | [centi] | 4.0 | Hundertstel / Centi – Metrisches Präfix = 10⁻² – Dimensionslose Einheit |
[milli] | Einheit | [milli] | 4.0 | Tausendstel / Milli – Metrisches Präfix = 10⁻³ – Dimensionslose Einheit |
[mic] | Einheit | [mic] | 4.0 | Millionstel / Micro – Metrisches Präfix = 10⁻⁶ – Dimensionslose Einheit |
[n] | Einheit | [n] | 4.0 | Milliardstel / Nano – Metrisches Präfix = 10⁻⁹ – Dimensionslose Einheit |
[p] | Einheit | [p] | 4.0 | Billionstel / Pico – Metrisches Präfix = 10⁻¹² – Dimensionslose Einheit |
[f] | Einheit | [f] | 4.0 | Billiardstel / Femto – Metrisches Präfix = 10⁻¹⁵ – Dimensionslose Einheit |
[a] | Einheit | [a] | 4.0 | Trillionstel / Atto – Metrisches Präfix = 10⁻¹⁸ – Dimensionslose Einheit |
[z] | Einheit | [z] | 4.0 | Trilliardstel / Zepto – Metrisches Präfix = 10⁻²¹ – Dimensionslose Einheit |
[y] | Einheit | [y] | 4.0 | Quadrillionstel / Yocto – Metrisches Präfix = 10⁻²⁴ – Dimensionslose Einheit |
[m] | Einheit | [m] | 4.0 | Meter – Längeneinheit [m] (m=1) – Einheit |
[km] | Einheit | [km] | 4.0 | Kilometer – Längeneinheit [m] (m=1) – Einheit |
[cm] | Einheit | [cm] | 4.0 | Zentimeter – Längeneinheit [m] (m=1) – Einheit |
[mm] | Einheit | [mm] | 4.0 | Millimeter – Längeneinheit [m] (m=1) – Einheit |
[inch] | Einheit | [inch] | 4.0 | Zoll – Längeneinheit [m] (m=1) – Einheit |
[yd] | Einheit | [yd] | 4.0 | Yard – Längeneinheit [m] (m=1) – Einheit |
[ft] | Einheit | [ft] | 4.0 | Fuß – Längeneinheit [m] (m=1) – Einheit |
[mile] | Einheit | [mile] | 4.0 | Meile – Längeneinheit [m] (m=1) – Einheit |
[nmi] | Einheit | [nmi] | 4.0 | Seemeile – Längeneinheit [m] (m=1) – Einheit |
[m2] | Einheit | [m2] | 4.0 | Quadratmeter – Flächeneinheit [m²] (m=1) – Einheit |
[cm2] | Einheit | [cm2] | 4.0 | Quadratzentimeter – Flächeneinheit [m²] (m=1) – Einheit |
[mm2] | Einheit | [mm2] | 4.0 | Quadratmillimeter – Flächeneinheit [m²] (m=1) – Einheit |
[are] | Einheit | [are] | 4.0 | Ar – Flächeneinheit [m²] (m=1) – Einheit |
[ha] | Einheit | [ha] | 4.0 | Hektar – Flächeneinheit [m²] (m=1) – Einheit |
[acre] | Einheit | [acre] | 4.0 | Morgen – Flächeneinheit [m²] (m=1) – Einheit |
[km2] | Einheit | [km2] | 4.0 | Quadratkilometer – Flächeneinheit [m²] (m=1) – Einheit |
[mm3] | Einheit | [mm3] | 4.0 | Kubikmillimeter – Volumeneinheit [m³] (m=1) – Einheit |
[cm3] | Einheit | [cm3] | 4.0 | Kubikzentimeter – Volumeneinheit [m³] (m=1) – Einheit |
[m3] | Einheit | [m3] | 4.0 | Kubikmeter – Volumeneinheit [m³] (m=1) – Einheit |
[km3] | Einheit | [km3] | 4.0 | Kubikkilometer – Volumeneinheit [m³] (m=1) – Einheit |
[ml] | Einheit | [ml] | 4.0 | Milliliter – Volumeneinheit [m³] (m=1) – Einheit |
[l] | Einheit | [l] | 4.0 | Liter – Volumeneinheit [m³] (m=1) – Einheit |
[gall] | Einheit | [gall] | 4.0 | Gallone – Volumeneinheit [m³] (m=1) – Einheit |
[pint] | Einheit | [pint] | 4.0 | Pint – Volumeneinheit [m³] (m=1) – Einheit |
[s] | Einheit | [s] | 4.0 | Sekunde – Zeiteinheit [s] (s=1) – Einheit |
[ms] | Einheit | [ms] | 4.0 | Millisekunde – Zeiteinheit [s] (s=1) – Einheit |
[min] | Einheit | [min] | 4.0 | Minute – Zeiteinheit [s] (s=1) – Einheit |
[h] | Einheit | [h] | 4.0 | Stunde – Zeiteinheit [s] (s=1) – Einheit |
[day] | Einheit | [day] | 4.0 | Tag – Zeiteinheit [s] (s=1) – Einheit |
[week] | Einheit | [week] | 4.0 | Woche – Zeiteinheit [s] (s=1) – Einheit |
[yearj] | Einheit | [yearj] | 4.0 | Julianisches Jahr = 365,25 Tage – Zeiteinheit [s] (s=1) – Einheit |
[kg] | Einheit | [kg] | 4.0 | Kilogramm – Masseneinheit [kg] (kg=1) – Einheit |
[gr] | Einheit | [gr] | 4.0 | Gramm – Masseneinheit [kg] (kg=1) – Einheit |
[mg] | Einheit | [mg] | 4.0 | Milligramm – Masseneinheit [kg] (kg=1) – Einheit |
[dag] | Einheit | [dag] | 4.0 | Dekagramm – Masseneinheit [kg] (kg=1) – Einheit |
[t] | Einheit | [t] | 4.0 | Tonne – Masseneinheit [kg] (kg=1) – Einheit |
[oz] | Einheit | [oz] | 4.0 | Unze – Masseneinheit [kg] (kg=1) – Einheit |
[lb] | Einheit | [lb] | 4.0 | Pfund – Masseneinheit [kg] (kg=1) – Einheit |
[b] | Einheit | [b] | 4.0 | Bit – Informationseinheit [bit] (bit=1) – Einheit |
[kb] | Einheit | [kb] | 4.0 | Kilobit – Informationseinheit [bit] (bit=1) – Einheit |
[Mb] | Einheit | [Mb] | 4.0 | Megabit – Informationseinheit [bit] (bit=1) – Einheit |
[Gb] | Einheit | [Gb] | 4.0 | Gigabit – Informationseinheit [bit] (bit=1) – Einheit |
[Tb] | Einheit | [Tb] | 4.0 | Terabit – Informationseinheit [bit] (bit=1) – Einheit |
[Pb] | Einheit | [Pb] | 4.0 | Petabit – Informationseinheit [bit] (bit=1) – Einheit |
[Eb] | Einheit | [Eb] | 4.0 | Exabit – Informationseinheit [bit] (bit=1) – Einheit |
[Zb] | Einheit | [Zb] | 4.0 | Zettabit – Informationseinheit [bit] (bit=1) – Einheit |
[Yb] | Einheit | [Yb] | 4.0 | Yottabit – Informationseinheit [bit] (bit=1) – Einheit |
[B] | Einheit | [B] | 4.0 | Byte – Informationseinheit [bit] (bit=1) – Einheit |
[kB] | Einheit | [kB] | 4.0 | Kilobyte – Informationseinheit [bit] (bit=1) – Einheit |
[MB] | Einheit | [MB] | 4.0 | Megabyte – Informationseinheit [bit] (bit=1) – Einheit |
[GB] | Einheit | [GB] | 4.0 | Gigabyte – Informationseinheit [bit] (bit=1) – Einheit |
[TB] | Einheit | [TB] | 4.0 | Terabyte – Informationseinheit [bit] (bit=1) – Einheit |
[PB] | Einheit | [PB] | 4.0 | Petabyte – Informationseinheit [bit] (bit=1) – Einheit |
[EB] | Einheit | [EB] | 4.0 | Exabyte – Informationseinheit [bit] (bit=1) – Einheit |
[ZB] | Einheit | [ZB] | 4.0 | Zettabyte – Informationseinheit [bit] (bit=1) – Einheit |
[YB] | Einheit | [YB] | 4.0 | Yottabyte – Informationseinheit [bit] (bit=1) – Einheit |
[J] | Einheit | [J] | 4.0 | Joule – Energieeinheit [J] (m=1, kg=1, s=1) – Einheit |
[eV] | Einheit | [eV] | 4.0 | Elektronenvolt – Energieeinheit [J] (m=1, kg=1, s=1) – Einheit |
[keV] | Einheit | [keV] | 4.0 | Kiloelektronenvolt – Energieeinheit [J] (m=1, kg=1, s=1) – Einheit |
[MeV] | Einheit | [MeV] | 4.0 | Megaelektronenvolt – Energieeinheit [J] (m=1, kg=1, s=1) – Einheit |
[GeV] | Einheit | [GeV] | 4.0 | Gigaelektronenvolt – Energieeinheit [J] (m=1, kg=1, s=1) – Einheit |
[TeV] | Einheit | [TeV] | 4.0 | Teraelektronenvolt – Energieeinheit [J] (m=1, kg=1, s=1) – Einheit |
[m/s] | Einheit | [m/s] | 4.0 | Meter pro Sekunde – Geschwindigkeitseinheit [m/s] (m=1, s=1) – Einheit |
[km/h] | Einheit | [km/h] | 4.0 | Kilometer pro Stunde – Geschwindigkeitseinheit [m/s] (m=1, s=1) – Einheit |
[mi/h] | Einheit | [mi/h] | 4.0 | Meilen pro Stunde – Geschwindigkeitseinheit [m/s] (m=1, s=1) – Einheit |
[knot] | Einheit | [knot] | 4.0 | Knoten – Geschwindigkeitseinheit [m/s] (m=1, s=1) – Einheit |
[m/s2] | Einheit | [m/s2] | 4.0 | Meter pro Quadratsekunde – Beschleunigungseinheit [m/s²] (m=1, s=1) – Einheit |
[km/h2] | Einheit | [km/h2] | 4.0 | Kilometer pro Quadratstunde – Beschleunigungseinheit [m/s²] (m=1, s=1) – Einheit |
[mi/h2] | Einheit | [mi/h2] | 4.0 | Meilen pro Quadratstunde – Beschleunigungseinheit [m/s²] (m=1, s=1) – Einheit |
[rad] | Einheit | [rad] | 4.0 | Radiant – Winkelmass [rad] (rad=1) – Einheit |
[deg] | Einheit | [deg] | 4.0 | Grad – Winkelmass [rad] (rad=1) – Einheit |
[‘] | Einheit | [‘] | 4.0 | Bogenminute – Winkelmass [rad] (rad=1) – Einheit |
[”] | Einheit | [”] | 4.0 | Bogensekunde – Winkelmass [rad] (rad=1) – Einheit |
( | Parser-Symbol | ( … ) | 1.0 | Linke Klammer – Parser-Symbol |
) | Parser-Symbol | ( … ) | 1.0 | Rechte Klammer – Parser-Symbol |
, | Parser-Symbol | (a1, … ,an) | 1.0 | Komma (Funktionsparameter) – Parser-Symbol |
; | Parser-Symbol | (a1; … ;an) | 1.0 | Semikolon (Funktionsparameter) – Parser-Symbol |
Parser-Symbol | 4.2 | Leerzeichen – Parser-Symbol |
Nuget – Package Manager (C#, F#, Visual Basic, …)
Install-Package
MathParser.org-mXparser
-Version
6.1.0
dotnet add package
MathParser.org-mXparser
--version
6.1.0
<PackageReference Include=
"MathParser.org-mXparser"
Version=
"6.1.0"
/>
Maven – Dependency (Java, Kotlin, Scala, Groovy, …)
<dependency>
<groupid>org.mariuszgromada.math
</groupid>
<artifactid>MathParser.org-mXparser
</artifactid>
<version>6.1.0
</version>
</dependency>
Maven – Gradle
implementation
'org.mariuszgromada.math:MathParser.org-mXparser:6.1.0'
CMake – Dependency / FetchContent (C++, MSVC, LLVM/Clang, GNU/GCC, MinGW, MSYS2, WSL, Windows, Linux, Unix, MacOS)
include(FetchContent)
FetchContent_Declare(
MathParserOrgMxParser
GIT_REPOSITORY https://github.com/mariuszgromada/MathParser.org-mXparser.git
GIT_TAG v.6.1.0
SOURCE_SUBDIR CURRENT/cpp/lib
)
FetchContent_MakeAvailable(MathParserOrgMxParser
)
target_link_libraries(YourExecutable MathParserOrgMxParser
)
GitHub
git clone
https://github.com/mariuszgromada/MathParser.org-mXparser
OTHER DOWNLOAD OPTIONS
Download latest release – v.6.1.0 Sagitara: .NET bin onlyDownload latest release – v.6.1.0 Sagitara: JAVA bin onlyDownload latest release – v.6.1.0 Sagitara: bin + doc
NEWS FROM MATHPARSER.ORG
SOURCE CODE
Source code .zipSource code .tar.gz
View on GitHubMathSpace.pl