This code behaves as expected on version 0.20.5 from NuGet (https://www.nuget.org/packages/NumSharp/)
var ones = np.ones((10, 1));
ones.negate();
But after upgrading to 0.3.0 a NotSupportedException is thrown:
at NumSharp.Backends.DefaultEngine.Negate(NDArray& nd)
at NumSharp.NDArray.negate()
This code behaves as expected on version 0.20.5 from NuGet (https://www.nuget.org/packages/NumSharp/)
var ones = np.ones((10, 1));ones.negate();But after upgrading to 0.3.0 a NotSupportedException is thrown:
at NumSharp.Backends.DefaultEngine.Negate(NDArray& nd)
at NumSharp.NDArray.negate()