#ifndef PYTHONIC_INCLUDE_NUMPY_LINSPACE_HPP #define PYTHONIC_INCLUDE_NUMPY_LINSPACE_HPP #include "pythonic/include/numpy/arange.hpp" PYTHONIC_NS_BEGIN namespace numpy { template > types::ndarray> linspace(double start, double stop, long num = 50, bool endpoint = true, bool retstep = false, dtype d = dtype()); DEFINE_FUNCTOR(pythonic::numpy, linspace); } PYTHONIC_NS_END #endif