numgo
numgo copied to clipboard
n-dimensional array implementation in Go.
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...
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()...
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...
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...