NumCpp  1.0
A C++ implementation of the Python Numpy library
applyPoly1d.hpp
Go to the documentation of this file.
1 #pragma once
30 
32 #include "NumCpp/NdArray.hpp"
34 
35 namespace nc
36 {
37  //============================================================================
38  // Method Description:
46  template<typename dtype>
47  void applyPoly1d(NdArray<dtype>& inArray, const polynomial::Poly1d<dtype>& inPoly)
48  {
49  applyFunction<dtype>(inArray, inPoly);
50  }
51 }
nc::polynomial::Poly1d
Definition: Poly1d.hpp:58
nc::applyPoly1d
void applyPoly1d(NdArray< dtype > &inArray, const polynomial::Poly1d< dtype > &inPoly)
Definition: applyPoly1d.hpp:47
nc::NdArray< dtype >
NdArray.hpp
applyFunction.hpp
nc
Definition: Coordinate.hpp:45
Poly1d.hpp