NumCpp  1.0
A C++ implementation of the Python Numpy library
tofile.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:
49  template<typename dtype>
50  void tofile(const NdArray<dtype>& inArray, const std::string& inFilename, const std::string& inSep = "")
51  {
52  return inArray.tofile(inFilename, inSep);
53  }
54 }
nc::NdArray::tofile
void tofile(const std::string &inFilename, const std::string &inSep="") const
Definition: NdArrayCore.hpp:4478
nc::NdArray< dtype >
NdArray.hpp
nc
Definition: Coordinate.hpp:45
nc::tofile
void tofile(const NdArray< dtype > &inArray, const std::string &inFilename, const std::string &inSep="")
Definition: tofile.hpp:50