JMP 13.2 联机文档
发现 JMP
使用 JMP
基本分析
基本绘图
刻画器指南
实验设计指南
拟合线性模型
预测和专业建模
多元方法
质量和过程方法
可靠性和生存方法
消费者研究
Scripting Guide
JSL Syntax Reference
Scripting Guide
•
JSL Building Blocks
•
Global and Local Variables
• Hide a Global Variable
上一个
•
下一个
Hide a Global Variable
To hide (or protect) a global variable, put two underscores (__) before the name. Protecting a global variable means that it will be hidden and can not be examined or shown. However, the behavior is different depending upon the content.
This example will not print the variable because it is protected:
Show(::__xyz);
This example returns a NULL value for the protected variable:
::a = Name Expr( ::__xyz );
This example does return a value for the protected variable:
Show( Eval( ::__xyz ) );