NumSharp
NumSharp copied to clipboard
High Performance Computation for N-D Tensors in .NET, similar API to NumPy.
x == 1 gives a result which is NDArray as expected x>1 and other operators like >=,
Generates a random sample from a given (possible weighted) 1-D array. NumPy docs: https://docs.scipy.org/doc/numpy/reference/generated/numpy.random.choice.html
There should be an approachable way to perform fast `foreach` on a `NDArray`. Currently `NDArray` implements non-generic `IEnumerable` which returns a boxed value that can be either the `NDArray.dtype` or...
Lazy loading
Hi Your lib NumSharp was inspired me and i tried to write a other approach of NumPy more easy to use. The big idea is the Lazy Loading for the...
Hi Is there a way to run spectogram with scipy.signal in Using this library?
I try to use var bb8List = new NDArray(typeof(string) , new Shape(bb8Num)); but it show error like this Exception has occurred: CLR/System.NotSupportedException An unhandled exception of type 'System.NotSupportedException' occurred in...
Allocation currently supports up to 2^32 bytes due to using int and not IntPtr and long.
@Oceania2018 @fdncred I started our Wiki (was not a lot but at least some lines ....) On https://github.com/Oceania2018/NumSharp/wiki/Design-guidelines I started a page with guidelines. Because I found our discussions and...
I've written an article [here](https://medium.com/@haiping008/numsharp-numerical-net-7c6ab6edfe27) which introduce NumSharp. @dotChris90 Can you start with the [docs](https://numsharp.readthedocs.io).
On very large arrays, NDArray.ToString() is never coming back (or maybe it would at some point in time). It would make sense to truncate the ToString() output.