Mean() Type: REGULAR FUNCTION Purpose: Calculate statistical mean on a set of data. The data set can include all of the data in a DATACOL object, or a subset of… read more →
LoadLibrary() Type: REGULAR FUNCTION Purpose: Dynamically load a DLL at run-time. This is the equivalent to the statement: library Result = LibraryName Usage: Result = LoadLibrary(LibraryName) LibraryName STRING Library file… read more →
Log() Type: REGULAR FUNCTION Purpose: Calculate the natural (base e) logarithm of a Number. If Number < 0, the absolute value is taken first. Usage: Result = Log(Number) Number… read more →
LineOpt Type: REGULAR FUNCTION Purpose: Return a sample time that results in successive samples 180 degrees out of phase with the AC power-line (mains) frequency. Averaging an even number of samples… read more →
LABEL.Sprint() Type: INSTANCE FUNCTION Purpose: Prints a label object out to a string. Usage: Result = Label.Sprint(Format) Format STRING (Optional) C-Language format string. Uses %.127s as default. Related Topics
LABEL.Value() Type: INSTANCE FUNCTION Purpose: Copies the Label text into a STRING. For example, with the sample Label object described above: String = ExptID.Value() creates a STRING with the contents… read more →
Library Routines The Functions Basic Math Functions Abs() Calculate the absolute value of a number Exp() Calculate exponent of a number Index() Convert a quantity to an INDEX LineOpt() Find… read more →
LABEL.New() Type: CLASS FUNCTION Purpose: Creates a new label. Suppose a LABEL object is created with the statement: ExptID = LABEL.New(“EXPERIMENT”, 20, “17S304”, “Edit Expt. ID”) ExptID is an object… read more →
LABEL.Printl() Type: INSTANCE FUNCTION Purpose: Prints the Label to the current Output. The object created is printed in the form: Tag <tab>LABEL <tab> Value <tab> Prompt being appended to the… read more →