poIResultMathCtrl GetOperatorList

Gets a list of operators for a particular library.

Syntax

rmath_handle GetOperatorList lib_name

Application

HyperView Tcl Query

Description

This command returns a list of result module operators corresponding to a library.

Inputs

lib_name
The name of the result module library.

Example

To get the list of operators for a particular result math library:
hwi OpenStack
hwi GetSessionHandle session_handle
session_handle GetProjectHandle project_handle
project_handle GetPageHandle page_handle [project_handle GetActivePage]
page_handle GetWindowHandle window_handle [page_handle GetActiveWindow]
window_handle GetClientHandle client_handle

set mid [client_handle AddResultMathAnalysis "c:/samples/bumper/d3plot" "c:/samples/bumper/d3plot"]

client_handle GetModelHandle model_handle $mid
model_handle GetResultCtrlHandle result_handle
result_handle GetResultMathCtrlHandle rmath_handle

set lib_list [rmath_handle GetLibraryList]

foreach lib $lib_list {
    set oper_list [rmath_handle GetOperatorList $lib]
}

hwi CloseStack

Errors

Returns an empty list if an error occurs.