-
**Summary**
In NumPy it is possible to perform a mathematical operation on arrays of different shapes. See NumPy documentation at https://docs.scipy.org/doc/numpy-1.15.0/user/basics.broadcasting.html…
-
Performance is an important part, and we've been working hard to improve the performance of NumSharp, from ArrayStorage to TypedArrayStorage. We are not satisfied with this, we are always looking for …
-
In Python:
```
a = np.array([ 1, 1, 2, 4, 1, 1 ])
b = np.std(a)
```
the output is: 1.1055415967851332
with numsharp:
```
var a = new NDArray(new[] { 1, 1, 2, 4, 1, 1 });
var b = a.std…
-
I was thinking that it could be very beneficial to create a method "ToDotNetArray" which convert the 1D NDArray to a jagged array in .NET World.
- Name --> ToDotNetArray
- Input --> nothing
- ou…
-
@Oceania2018 I've just finished a project which I've converted from NumSharp 0.10.4.0 to the unmanaged-bytes-storage branch per a suggestion from @Nucs. Unfortunately for me, the project needs to run …
-
Is the goal of NumSharp to be a 1:1 port of numpy?
Or is the goal to be compatible with numpy but eventually have other extra features?
-
This is the code I use
![1](https://user-images.githubusercontent.com/43975116/66219858-23e40480-e6f6-11e9-8b26-d6d53f0fd548.png)
![2](https://user-images.githubusercontent.com/43975116/66219870-2…
-
Return the cumulative sum of the elements along a given axis.
NumPy docs: https://docs.scipy.org/doc/numpy/reference/generated/numpy.cumsum.html
I think the corresponding NumSharp file should be…
-
Consider the following code:
``` python
a = np.array([1, 2, 3], dtype=np.int32)
a = a.astype(np.float64)
```
The following code in C# does not work:
``` C#
np.array(1, 2, 3, 4, 5).astype(np.f…
-
In Python:
```
import numpy as np
a = np.arange(100)
b = a[20:50]
```
no problem..
with NumSharp:
```
var a = np.arange(100);
var b = a[20, 50];
```
I get an out of bounds error …