Lazy Functions#
The next functions can be used for computing with any of NDArray, C2Array, NDField and LazyExpr.
Their result is always a LazyExpr instance, which can be evaluated (with compute
or __getitem__
) to get the actual values of the computation.
Calculate the absolute value element-wise. |
|
Compute the inverse sine, element-wise. |
|
Compute the inverse cosine, element-wise. |
|
Compute the inverse tangent, element-wise. |
|
Compute the element-wise arc tangent of |
|
Compute the inverse hyperbolic sine, element-wise. |
|
Compute the inverse hyperbolic cosine, element-wise. |
|
Compute the inverse hyperbolic tangent, element-wise. |
|
Compute the trigonometric sine, element-wise. |
|
Trigonometric cosine, element-wise. |
|
Compute the trigonometric tangent, element-wise. |
|
Hyperbolic sine, element-wise. |
|
Compute the hyperbolic cosine, element-wise. |
|
Compute the hyperbolic tangent, element-wise. |
|
Calculate the exponential of all elements in the input array. |
|
Calculate |
|
Compute the natural logarithm, element-wise. |
|
Return the base 10 logarithm of the input array, element-wise. |
|
Return the natural logarithm of one plus the input array, element-wise. |
|
Return the non-negative square-root of an array, element-wise. |
|
Return the complex conjugate, element-wise. |
|
Return the real part of the complex array, element-wise. |
|
Return the imaginary part of the complex array, element-wise. |
|
Check if the array contains a specified value. |