dpilger26 / NumCpp

C++ implementation of the Python Numpy library
https://dpilger26.github.io/NumCpp
MIT License
3.48k stars 548 forks source link

multidimensional arrays support #76

Open Felix-neko opened 3 years ago

Felix-neko commented 3 years ago

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 really stops us from starting using NumCpp in our C++ part.

Can you add multidimensonal arays some day?

DiracLee commented 3 years ago

I hope so!!!

makiolo commented 1 year ago

we need this, but it implied a big effort. I think in support reshape to infinite dimensions, but internally always is 1d, and maybe support some one special operators for 2d, 3d and 4d, but you always can slice to reduce dimensions ... Should be awesome.