Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1556 |
|
Package | utility | |
Module | table | |
Tool | tablecomparer |
col | The name of the column to get the tolerance of | ||
Allowed: | A valid column name | ||
Default: | None | ||
tlabel | The label of the table or subtable in which this column is | ||
Allowed: | A valid table label | ||
Default: | '' (the top level table) |
- tc := tablecomparer('test.table','fiducial.table') - tol := [=]; - tol.TABLE.DCOL := 1e-8; - tol.GTABLE.GCOL := 1e-5; - tc.setprecision(double=1e-9, cols=tol); - tc.tolerance('DCOL') 1e-8 - tc.tolerance('GCOL','GTABLE') 1e-05 - # CCOL is a column of type double - tc.tolerance('CCOL') 1e-9 - # HCOL is a column of type float - tc.tolerance('HCOL') 0