Difference between revisions of "ZCubes/Unit Conversions in ZCubes"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "==Unit Conversions in ZCubes== <br/> ZCubes is a platform that is 'Units Aware'. You can provide the units for specific values, and ZCubes will compute and produce the result,...")
 
Line 8: Line 8:
 
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
 
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
  
 +
==Code==
 +
1mi;
 +
1km;
 +
 +
a=2km
 +
a<>mi;
 +
 +
a=1..10;
 +
b=a<>mi;
 +
b<>km;
 +
 +
a=1..10;
 +
b=a<>degC;
 +
b<>deg F;
 +
 +
a=90deg;
 +
SIN(a)
  
  

Revision as of 02:23, 24 March 2020

Unit Conversions in ZCubes


ZCubes is a platform that is 'Units Aware'. You can provide the units for specific values, and ZCubes will compute and produce the result, based on the resultant units. This is a powerful feature for the user to save time and effort by not having to write the unit conversion algorithms. ZCubes takes care of this in the computation.

Video


Unit Conversions in ZCubes














Code

1mi;
1km;
a=2km
a<>mi;
a=1..10;
b=a<>mi;
b<>km;
a=1..10;
b=a<>degC;
b<>deg F;
a=90deg;
SIN(a)


<< Learn ZCubes
© Copyright 1996-2020, ZCubes, Inc.