 |
NumCpp
2.1.0
A C++ implementation of the Python Numpy library
|
Go to the documentation of this file.
50 template<
typename dtype>
51 auto conj(
const std::complex<dtype>& inValue)
69 template<
typename dtype>
72 NdArray<decltype(
nc::conj(std::complex<dtype>{0}))> returnArray(inArray.shape());
74 [](
auto& inValue) ->
auto
76 return nc::conj(inValue);
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition: StaticAsserts.hpp:38
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:75
OutputIt transform(InputIt first, InputIt last, OutputIt destination, UnaryOperation unaryFunction)
Definition: StlAlgorithms.hpp:703
auto conj(const NdArray< std::complex< dtype >> &inArray)
Definition: conj.hpp:70
Definition: Coordinate.hpp:45
auto conj(const std::complex< dtype > &inValue)
Definition: conj.hpp:51
iterator begin() noexcept
Definition: NdArrayCore.hpp:1091