numgo icon indicating copy to clipboard operation
numgo copied to clipboard

n-dimensional array implementation in Go.

Results 4 numgo issues
Sort by recently updated
recently updated
newest added

Hi, In numgo, fmt.Println(numgo.Arange(0, 10)) => [0 1 2 3 4 5 6 7 8 9 10]. In numpy, print(np.arange(0, 10)) => [0 1 2 3 4 5 6 7...

question

There is a lot of redundancy in the Array64 and Arrayb methods. Quite a few of them are exactly the same, except for the input/return type. Consider e.g. the Reshape()...

enhancement

For various mathematical applications it would be useful to have a reflection method that mirrors the array around a given axis. For a 2D example: ``` 1 2 3 4...

enhancement

Hi, this is just for discussion, not a real bug or issue. Is the use of a "internal" package needed/useful? I find it unnecessarily complicated to contribute, for every change...

question