NumCpp  2.1.0
A C++ implementation of the Python Numpy library
dump.hpp
Go to the documentation of this file.
1 #pragma once
30 
31 #include "NumCpp/NdArray.hpp"
32 
33 #include <string>
34 
35 namespace nc
36 {
37  //============================================================================
38  // Method Description:
47  template<typename dtype>
48  void dump(const NdArray<dtype>& inArray, const std::string& inFilename)
49  {
50  inArray.dump(inFilename);
51  }
52 } // namespace nc
nc::dump
void dump(const NdArray< dtype > &inArray, const std::string &inFilename)
Definition: dump.hpp:48
nc::NdArray< dtype >
NdArray.hpp
nc::NdArray::dump
void dump(const std::string &inFilename) const
Definition: NdArrayCore.hpp:2688
nc
Definition: Coordinate.hpp:45