axlPutOutputSignificantDigits
axlPutOutputSignificantDigits(x_sdb t_testName t_outputID x_value) =>x_sdb/nil
Description
Sets the number of significant digits corresponding to the specified output of the test.
Arguments
Value Returned
|
Returns the handle to the output database when the number of significant digits is successfully set |
|
|
The significant digits are not set for the specified output. |
Examples
The following example sets the number significant digits for the output Current of test AC to 5.
session=axlGetWindowSession()
=> "fnxSession0"
sdb=axlGetMainSetupDB(session)
=> 1001
axlPutOutputNotation(sdb "AC" "Current" 5)
=> 2529
Return to top