 |
NumCpp
1.0
A C++ implementation of the Python Numpy library
|
Go to the documentation of this file.
53 template<
typename dtype1,
typename dtype2>
54 auto powerf(dtype1 inValue, dtype2 inExponent) noexcept
70 template<
typename dtype1,
typename dtype2>
75 [inExponent](dtype1 inValue) noexcept ->
auto
77 return nc::powerf(inValue, inExponent);
94 template<
typename dtype1,
typename dtype2>
104 [](dtype1 inValue, dtype2 inExponent) noexcept ->
auto
106 return nc::powerf(inValue, inExponent);
Shape shape() const noexcept
Definition: NdArrayCore.hpp:4296
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:75
const_iterator cend() const noexcept
Definition: NdArrayCore.hpp:1491
Definition: Coordinate.hpp:45
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition: Error.hpp:37
OutputIt transform(InputIt first, InputIt last, OutputIt destination, UnaryOperation unaryFunction) noexcept
Definition: StlAlgorithms.hpp:703
const_iterator cbegin() const noexcept
Definition: NdArrayCore.hpp:1147
iterator begin() noexcept
Definition: NdArrayCore.hpp:1091
auto powerf(dtype1 inValue, dtype2 inExponent) noexcept
Definition: Functions/powerf.hpp:54
auto powerf(dtype1 inValue, const dtype2 inPower) noexcept
Definition: Utils/powerf.hpp:52