Arithmetic Operations
Built-in functions › Mathematics › Elementary Math › Arithmetic Operations
13 functions in this category.
Arithmetic Operations
Section titled “Arithmetic Operations”| Function | What it does |
|---|---|
atan2 | Four-quadrant arctangent. |
atan2d | Four-quadrant arctangent in degrees. |
hypot | Square root of sum of squares (numerically stable). |
ldivide | Element-wise left division (function form of .\). |
maxb | Element-wise maximum of two arrays (kernel-level). |
minb | Element-wise minimum of two arrays (kernel-level). |
minus | Element-wise subtraction (function form of -). |
mod | Modulo operation (positive result). |
plus | Element-wise addition (function form of +). |
power | Element-wise exponentiation (function form of .^). |
rdivide | Element-wise right division (function form of ./). |
rem | Remainder of division (truncated, sign of dividend). |
times | Element-wise multiplication (function form of .*). |