Raise an array to a power.
More...
Raise an array to a power.
- Note
- This function supports real inputs only. Complex inputs are not yet supported.
C Interface for power.
- Parameters
-
| [out] | out | will contain lhs raised to power rhs |
| [in] | lhs | is base |
| [in] | rhs | is exponent |
| [in] | batch | specifies if operations need to be performed in batch mode |
- Returns
- AF_SUCCESS if the execution completes properly
| AFAPI array af::pow |
( |
const array & |
lhs, |
|
|
const array & |
rhs |
|
) |
| |
| AFAPI array af::pow |
( |
const array & |
lhs, |
|
|
const double |
rhs |
|
) |
| |
C++ Interface for power.
Computes the value of lhs raised to the power of rhs. The inputs can be two arrays or an array and a scalar.
- Parameters
-
| [in] | lhs | is base |
| [in] | rhs | is exponent |
- Returns
lhs raised to power rhs
| AFAPI array af::pow |
( |
const double |
lhs, |
|
|
const array & |
rhs |
|
) |
| |
C++ Interface for power.
Computes the value of lhs raised to the power of rhs. The inputs can be two arrays or an array and a scalar.
- Parameters
-
| [in] | lhs | is base |
| [in] | rhs | is exponent |
- Returns
lhs raised to power rhs
| AFAPI array af::pow2 |
( |
const array & |
in | ) |
|
C++ Interface for power of 2.
- Parameters
-
- Returns
- 2 raised to power of
in