| 1 | initial version |
There is actually a way to do this; see here.
#define units
ft = units.length.foot
m = units.length.meter
#add some lengths and output in ft
(3*ft + 4*m).convert(units.length.foot).polynomial(RR)
| 2 | No.2 Revision |
There is actually a way to do this; see here.
#define units
ft = units.length.foot
m = units.length.meter
#add some lengths and output in ft
(3*ft + 4*m).convert(units.length.foot).polynomial(RR)
This returns
16.1233595800525*foot
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.