You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia>convert(typeof(1.0u"dB_rp"), 100.0) # correct40.0 dB
julia>convert(typeof(1.0u"dB_rp"), 1.0u"m/cm") # this should be the same, because 1m/cm == 100100.0 dB
using uconvert:
julia>uconvert(u"dB_rp", 100.0) # correct40.0 dB
julia>uconvert(u"dB_rp", 1.0u"m/cm") # a _different_ wrong result0.0 dB
The text was updated successfully, but these errors were encountered:
using
convert
:using
uconvert
:The text was updated successfully, but these errors were encountered: