engineering_notation
engineering_notation copied to clipboard
Easy engineering notation using python
Not sure if this is fundamental limitation that is easy to fix or not but get this error when trying to use EngNumber with pandas dataframe constructors. Workaround I have...
Thanks for this tool. It does basically what we need. In the Electronics world, it is very common to use the "R notation" where the decimal separator gets replaced by...
Suppose I want to divide a voltage by a resistance and give it the unit `A`. ```python V = EngUnit(5, unit='V') R = EngUnit(1.2, unit='Ω') I = V / R...