Select
Selects the specified variable for analysis.
Syntax
Select(doc, var)
Parameters
Parameter |
Type |
Description |
---|---|---|
doc |
documentReference |
Reference to the document |
var |
variableReference |
Reference to the variable |
Return
None.
Note
Only selected variables used in analysis. Use select and deselect functions to specify what variables you want to analyze.
Examples
Python
import nex
doc = nex.GetActiveDocument()
nex.Select(doc, doc["Neuron04a"])
NexScript
doc = GetActiveDocument()
Select(doc, doc["Neuron04a"])