-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Compatibility with Unitful Quantity types #26
Comments
One thing I'll note here is the restriction of the scalars of To get around this, you can just wrap a julia> using CliffordNumbers, Unitful
julia> KVector{1,VGA(3)}(1, 2, 3)u"m"
3-element KVector{1, VGA(3), Int64}:
1e₁ + 2e₂ + 3e₃ m
julia> typeof(ans)
Quantity{KVector{1, VGA(3), Int64, 3}, 𝐋, Unitful.FreeUnits{(m,), 𝐋, nothing}} (There is a printing issue here since |
I still need to include support for a few other operations, but your use case should be covered by this initial package extension. |
Thanks! I’m looking forward to trying it out. |
Final update: this has been released as of 0.1.9. |
Following up from #25, I would love to be able to use this package with
Unitful.Quantity
types. The following MWE demonstrates a usage that I would like to have work, but that currently doesn't.The text was updated successfully, but these errors were encountered: