NumSharp
NumSharp copied to clipboard
High Performance Computation for N-D Tensors in .NET, similar API to NumPy.
Many methods don't seem to be documented at all, or did I just fail to find the right place to look for? Also, is this project still maintained or is...
Hi, I am using this function to smooth some measurement data, sadly it returns null for some reason. Here is the example code that produced the same result: ``` int...
Hi, I am unable to find [numpy.cross](https://numpy.org/doc/stable/reference/generated/numpy.cross.html) in the API? If it is not available, what might be the best workaround?
I am a new learner of NumSharp and now I want to calculate the matmul product of two NDArrays by using `np.matmul` function: ```Csharp using NumSharp; var a = np.arange(2...
great work at your side. simply don't understand the reason why. example: file Default.NonZero.cs
When attempting to create a new `NDArray` of complex numbers, I get an exception in the `Allocate` method at https://github.com/SciSharp/NumSharp/blob/00d8700b00e815f321238536e0d6b4dbc9af8d6a/src/NumSharp.Core/Backends/Unmanaged/ArraySlice.cs#L387:  Are complex numbers supported as the dtype of `NDArray`...
We might use [Campy](https://github.com/kaby76/Campy) to accelerate NumSharp.
When using the `public static unsafe Bitmap ToBitmap(this NDArray nd, int width, int height, PixelFormat format = PixelFormat.DontCare)` passing a NDArray of shape (1, x, y, 3) fails due to...
Is it possible to bit-shift and bit-or all values in a NDArray with NumSharp, whiteout a for loop? With Numpy (python) is works as follows: r_shift = r
I have a question,but I'm new to this. I want to compute the rank of a matrix, but could not do it when I tried the following. np.linalg.matrix_rank(A) ; A:NDArray...