There are a number of factors in resolving a named variable reference. Namespace References describes the named variable references that are resolved for specific situations.
•
|
In JMP 9 and later, a, :a, and ::a have the same meaning with the Names Default To Here mode turned off.
|
•
|
If the Names Default To Here mode is on, JMP looks for the variable in these locations:
If the Names Default To Here mode is off, JMP looks for the variable in these locations:
|
|
||||||||||||||||
JMP looks for the variable in the Global namespace.
|
JMP creates the variable in the Global namespace.
|
||||||||||||||||
JMP looks for the variable in the encapsulating New Window window namespace.
|
JMP creates the variable in the encapsulating New Window window namespace.
|
||||||||||||||||
JMP looks for the variable in the encapsulating Context Box namespace contained in a New Window window.
|
JMP creates the variable in the encapsulating Context Box namespace contained in a New Window window.
|
Local( {d1l1 = 12},
local:f1f1 = Function( {fa1, fa2},
{fl1 = 99},
local:l2l2 = 78;
|