Array Operations
Built-in functions › Mathematics › Array Operations
18 functions in this category.
| Function | What it does |
|---|---|
all | Test whether all elements of an array are nonzero. |
any | Test whether any element of an array is nonzero. |
cross | Cross product of two 3-element vectors. |
ctranspose | Conjugate transpose (A'). |
cumprod | Cumulative product along a dimension. |
cumsum | Cumulative sum along a dimension. |
dot | Vector or array dot product. |
horzcat | Horizontal concatenation ([A, B]). |
idivide | Integer division with controllable rounding. |
mldivide | Matrix left division (A \ B). |
mpower | Matrix power (A ^ B). |
mrdivide | Matrix right division (A / B). |
mtimes | Matrix multiplication (A * B). |
prod | Product of array elements. |
sum | Sum elements of an array. |
tril | Lower-triangular part of a matrix. |
triu | Upper-triangular part of a matrix. |
vertcat | Vertical concatenation ([A; B]). |