Numpy.NET icon indicating copy to clipboard operation
Numpy.NET copied to clipboard

C#/F# bindings for NumPy - a fundamental library for scientific computing, machine learning and AI

Results 14 Numpy.NET issues
Sort by recently updated
recently updated
newest added

@henon I wouldn't suppose any workarounds exist to getting something like this to work? ``` NDarray dateTimes = np.array( new DateTime[] { new DateTime(2000, 1, 15), new DateTime(2000, 6, 15),...

CSC : warning CS8002: Referenced assembly 'Numpy, Version=3.10.0.0, Culture=neutral, PublicKeyToken=null' does not have a strong name. **_System.IO.FileLoadException_** HResult=0x80131044 Message=Could not load file or assembly '**_Numpy, Version=3.10.0.0, Culture=neutral, PublicKeyToken=null'_** or one...

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.2 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...

dependencies

after saving some arrays into a .npz archive like so ```c# Dictionary arrays = new Dictionary(); arrays["valueOne"] = valueOne; arrays["valueTwo"] = valueTwo; np.savez_compressed(filename, null, arrays); ``` its impossible to get...