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

hi~ Will you consider supporting np.linalg.eigvals in the future?

enhancement
help wanted

Would be nice to include some benchmarks against another matrix/linalg libraries, such as Eigen, xtensor, numpy (py version), blaze, ...

enhancement
help wanted

hello, there does NumCpp contain FFT function?

enhancement
help wanted

**Describe the bug** Thanks for your excellent work! when using NumCPP, I found that the nc::sum(NdArray) will give the wrong result **To Reproduce** Steps to reproduce the behavior: ```c++ #include...

Thanks for you project. But I found that the broadcasting in numpy is likely not supported in NumCpp. For example, I have two matrixs: A=[1,2,3] B = [[1], [2], [3]]...

enhancement

This is great project ,but it doesn't support np.expand_dims which often used

enhancement

**Describe the bug** outer function currently doesn't support input arrays of different sizes **To Reproduce** ` nc::NdArray x = {1., 2.}; nc::NdArray y = {1., 2., 3.}; auto output =...

enhancement

can you please support np.lib.stride_tricks.as_strided function? Thanks

enhancement

Hi folks! As I can see, currently NumCpp lacks support for multidimensional arrays (for example, 3D or 4D datacubes). We oftenly use such arrays in our numpy code, and it...

enhancement

**Describe the bug** It takes forever to do SVD::decompose() **To Reproduce** Run linalg.lstsq with big NdArray, my was 8905 rows and 316 cols **Expected behavior** It must be much more...

enhancement
help wanted