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
From #14 (comment), I see that switching to Unitful.jl was once (still is?) considered. Barring that, I'm wondering if there's a way to convert eg mm into inches?
For example, with Unitful: uconvert(u"inch",183u"mm"), or simply import Unitful: mm, inch; uconvert(inch,183mm).
How to do this right now in case it helps a stray Julian:
using Measures, Unitful
W =200mm
uconvert(u"inch",Quantity(W.value,u"mm"))
The text was updated successfully, but these errors were encountered:
From #14 (comment), I see that switching to Unitful.jl was once (still is?) considered. Barring that, I'm wondering if there's a way to convert eg mm into inches?
For example, with Unitful:
uconvert(u"inch",183u"mm")
, or simplyimport Unitful: mm, inch; uconvert(inch,183mm)
.How to do this right now in case it helps a stray Julian:
The text was updated successfully, but these errors were encountered: