We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a difference on how standard deviation is calculated for Complex numbers.
var arr = new Complex[] { new(1, 2), new(3, 4) }; var tensor = Tensor.Create(arr); Console.WriteLine(TensorPrimitives.StdDev(arr)); Console.WriteLine(Tensor.StdDev(tensor.AsReadOnlyTensorSpan()));
Output:
<2,0000000000000004; 0> <2,0000000000000004; 0>
<2,0000000000000004; 0> <0; 2>
No response
10.0.0-preview.4
The text was updated successfully, but these errors were encountered:
Tagging subscribers to this area: @dotnet/area-system-numerics-tensors See info in area-owners.md if you want to be subscribed.
Sorry, something went wrong.
No branches or pull requests
Description
There is a difference on how standard deviation is calculated for Complex numbers.
Reproduction Steps
Expected behavior
Output:
Actual behavior
Output:
Regression?
No response
Known Workarounds
No response
Configuration
10.0.0-preview.4
Other information
No response
The text was updated successfully, but these errors were encountered: