53 template<
typename dtype>
62 std::ifstream
file(
inFilename.c_str(), std::ios::in | std::ios::binary);
68 file.seekg(0, std::ifstream::end);
70 file.seekg(0, std::ifstream::beg);
98 template<
typename dtype>
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition Error.hpp:37
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition NdArrayCore.hpp:139
Definition Cartesian.hpp:40
NdArray< dtype > fromfile(const std::string &inFilename)
Definition fromfile.hpp:54
std::uint64_t uint64
Definition Types.hpp:39
NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
Definition arange.hpp:59