MastHEad

 


Summary of Kornucopia Terminology


 

This help section provides a brief listing of various terminology used in Kornucopia.

 A = k_units(A)

The Kornucopia function k_units, in the expression above, is also called the constructor function for the class k_units. Data types (or entities) that yield an error for this function evaluation are not Kornucopia-compatible data types. Click here for more detailed discussion on Kornucopia-compatible data types.

k_unitsVariables('kHz, mm, s');  fs = 50*kHz;  A = 775.4*mm/s^2;.

With a structured Units Variable, the same code would be written as

u = k_unitsVariables();  fs = 50*u.kHz;  A = 775.4*u.mm/u.s^2;.