Method |
Arguments (in the required sequence) |
Return value |
Description |
getFactors()
|
This method does not take any arguments. |
A list of objects, each representing a DOE factor |
Returns a list of objects, each representing a DOE factor. Each object encapsulates the configuration of corresponding DOE factor in
Isight DOE component.
Factor objects are immutable.
For more details about the API exposed by factor objects, refer the documentation of factor object, available below.
|
getTechniqueOptions()
|
This method does not take any arguments. |
A dictionary of technique option names mapped to option values. |
Returns a dictionary of technique option names mapped to the corresponding technique option
values. Both the names and values are string
values. |
getNumPoints()
|
This method does not take any arguments. |
The number of experiments to be executed as an integer value. |
Returns the number of design points to be generated by the DOE algorithm, as an integer value.
This value is identical to the value returned by
computeNumberOfExperiements() function in
the user-supplied Python routine. |
setNumPoints()
|
- |
- |
|
getMatrix()
|
This method does not take any arguments. |
A 2D array of string values |
Returns a 2D array of string values. The number of rows and columns in the array
correspond to the value returned by
getNumPoints() API and the number of
factors selected in the Isight DOE component, respectively.
You are expected to populate the DOE matrix that will be generated in
the generateDesignMatrix() function in a
Python routine in to this array. |
logDebug()
|
message : The message to be logged as a string value
|
None
|
Logs the message to Isight
system log or job log, as applicable, as a debug-level message. |
logInfo()
|
message : The message to be logged as a string value
|
None
|
Logs the message to an Isight system log or job log, as applicable, as an information-level
message. |
logWarn()
|
message : the message to be logged as a string value
|
None
|
Logs the message to an Isight system log or job log, as applicable, as a warning-level
message. |
logError()
|
message : the message to be logged as a string value
|
None
|
Logs the message to Isight
system log or job log, as applicable, as an error-level message. |
logSysError()
|
message : the message to be logged as a string value
|
None
|
Logs the message to Isight system log or job log, as applicable, as a system-error-level message. |
logAlways()
|
message : the message to be logged as a string value
|
None
|
Logs the message to Isight
system log or job log, as applicable, as an always-level message. |