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
As per the title, the unit function doesn't work for log units. Tested for dB and V_mag (UnitfulAstro)
julia> unit(1.0u"dB") == u"dB" false julia> unit(1.0u"m") == u"m" true julia> unit(1.0u"rad") == u"rad" true
The return is as below. I compared this to radians for another NoDims unit:
julia> unit(1.0u"dB") |> typeof Unitful.FreeUnits{(), NoDims, nothing} julia> unit(1.0u"rad") |> typeof Unitful.FreeUnits{(rad,), NoDims, nothing}
The text was updated successfully, but these errors were encountered:
unit
dimension
Level
No branches or pull requests
As per the title, the unit function doesn't work for log units. Tested for dB and V_mag (UnitfulAstro)
The return is as below. I compared this to radians for another NoDims unit:
The text was updated successfully, but these errors were encountered: