NumCpp icon indicating copy to clipboard operation
NumCpp copied to clipboard

C++ implementation of the Python Numpy library

Results 27 NumCpp issues
Sort by recently updated
recently updated
newest added

` np.maximum(np.eye(2), [0.5, 2]) # broadcasting array([[ 1. , 2. ], [ 0.5, 2. ]])`

enhancement

For large-scale applications, the matrices are mostly sparse. Beyond the compatibility with Numpy, will you consider sparse matrix operations?

enhancement

minwindef.h from SDK 8.1 contains: #ifndef max #define max(a,b) (((a) > (b)) ? (a) : (b)) #endif #ifndef min #define min(a,b) (((a) < (b)) ? (a) : (b)) #endif those...

Does this project support riscv? I was trying to build it on riscv plaform, but I failed because some of the cmath functions are not supported by riscv-toolchain. Had anyone...

Hello! I think these changes better correspond with the function behavior - let me know, thanks.

Hi, thanks for this great library! I was wondering if it could be used inside a CUDA kernel like Eigen? For example: ``` __global__ void test_kernel(int n, float * r)...

**Describe the solution you'd like** Update the new 2.8.0 version to vcpkg, the current version available in vcpkg is only 2.6.0 from the last year (2021)

nc.reshape not support 3-dimension array, can you add an overloading function?

In deep learning, 4-dimensional arrays are often used. For example: `cv::Mat[1,2,512,512]`