Errof
Contents
Description
This function returns the dataset (error column) containing the error values of dataset vd. Please note that vd must have an error column which lies next to vd.
Syntax
dataset errof(dataset vd)
Parameter
vd
- a column or dataset associated with error.
Return
Returns the dataset (error column) containing the error values of vd.
Example
newbook; fname$ = system.path.program$ + "Samples\Curve Fitting\Gaussian.dat"; impASC; wks.col3.type=3; range rr = col(b); col(D) = Errof(rr);