We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
CircleGroup
Consider the circle group
G = CircleGroup()
This works:
g = rand(G)
This also works, although it gives a tangent vector which is not stored as left invariant (this is fine, but worth being aware of it):
rand(G; vector_at=g)
Now:
This throws a MethodError:
MethodError
rand(TangentSpace(G,g)) # same error if g == identity_element(G)
This only ever returns 0:
rand(G; vector_at=identity_element(G)) # 0.0
The text was updated successfully, but these errors were encountered:
rand
SpecialOrthogonal(2)
Closing, since this is probably working as expected (see #688 (comment)).
Sorry, something went wrong.
No branches or pull requests
Consider the circle group
This works:
This also works, although it gives a tangent vector which is not stored as left invariant (this is fine, but worth being aware of it):
Now:
This throws a
MethodError
:This only ever returns 0:
The text was updated successfully, but these errors were encountered: