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
I'd like for Clifford to have the ability to store MV's in basis blades that are out of order.
For example, 2D PGA has the bases blades in this order
e0 e1 e2 e01 e20 e12 e012
The e20 blade is out of order.
e20
So I'd like to write something like the following
ids = BasisVectorIds.ordered_integers(3, first_index=0) order = ids.order_from_tuples((), (0,), (1,), (2,), (0,1), (2,0), (1,2), (0,1,2)) ...
This throws an error saying that The blade (2, 0) is not canonical and sign flips in storage are not supported.
The blade (2, 0) is not canonical and sign flips in storage are not supported
The text was updated successfully, but these errors were encountered:
I'm kind of new to this kind of algebra btw. Was learning about it from Bivector's channel.
Sorry, something went wrong.
No branches or pull requests
I'd like for Clifford to have the ability to store MV's in basis blades that are out of order.
For example, 2D PGA has the bases blades in this order
The
e20
blade is out of order.So I'd like to write something like the following
This throws an error saying that
The blade (2, 0) is not canonical and sign flips in storage are not supported
.The text was updated successfully, but these errors were encountered: