maeSensDeleteParameter
maeSensDeleteParameter(
t_parameterName
[ ?session t_sessionName ]
)
=> t / nil
Description
Deletes the specified parameter from the setup for Sensitivity analysis in the current or the specified maestro session.
Arguments
|
t_parameterName
|
Name of the parameter. The parameter name must contain at least five non-empty string values, each separated by a / in the following format:
library-name/cell-name/view-name/instance-name/property-name
For hierarchical parameters, specify the hierarchical path in instance-name. For example, mylib/mycell/view1/instance0/instance1/instance2/length.
|
|
?session t_sessionName
|
|
|
Name of the maestro session.
If not specified, the current session is used.
|
Value Returned
|
t
|
The parameter is successfully deleted.
|
|
nil
|
The parameter is not deleted. You can review the errors in the log.
|
Examples
Deletes the specified parameter from the run options.
maeSensDeleteParameter("minimal/cm/schematic/NM0/fw")
=> t
Return to top