Re: units
- To: mathgroup at smc.vnet.net
- Subject: [mg28754] Re: [mg28743] units
- From: BobHanlon at aol.com
- Date: Fri, 11 May 2001 20:00:32 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Needs["Miscellaneous`Units`"];
val = 1. Centimeter/(1. Milli Meter)
(1.*Centimeter)/(Meter*Milli)
Convert to any of the standard systems
{val // SI, val // MKS, val // CGS}
{10., 10., 10.}
Bob Hanlon
In a message dated 2001/5/11 3:46:55 AM, elliot at nospamhitide.com writes:
>1. Centimeter/1. Milli Meter gives 1. Centimeter/MeterMilli
>How can I get it to cancel units and give 10 (no units)?
>