Mathematical Operations and Elementary Functions
Mathematical Operations and Elementary Functions
Julia provides a complete collection of basic arithmetic and bitwise operators across all of its numeric primitive types, as well as providing portable, efficient implementations of a comprehensive collection of standard mathematical functions.
Arithmetic Operators
The following arithmetic operators are supported on all primitive numeric types:
Expression | Name | Description |
---|---|---|
+x |
unary plus | the identity operation |
-x |
unary minus | maps values to their additive inverses |
x + y |
binary plus | performs addition |
x
|