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
UnitfulExt currently does not work for logarithmic units.
Example:
using Plots
using Unitful:m, dB, dBm
plot( (1:10)m) # worksplot( (1:10)dB ) # does not work, produces errorplot( (1:10)dBm ) # does not work, produces error
The error reads
ERROR: MethodError: no method matching isinf(::Gain{Unitful.LogInfo{:Decibel, 10, 10}, :?, Int64})
The text was updated successfully, but these errors were encountered:
@ykonter wrote a PR on UnitfulRecipes to fix this partially about a year ago. I don't quite remember where that landed, it's possible I got caught up in completionism and forgot to merge the parts that worked.
I can see if I can find some time to look it through this weekend.
UnitfulExt currently does not work for logarithmic units.
Example:
The error reads
The text was updated successfully, but these errors were encountered: