cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
hogi
Level XIII

Exceptions are the utilities Show, Write, and Print ...

from: https://www.jmp.com/support/help/en/18.1/?os=win&source=application#page/jmp/advanced-expressions-ma... 

 

If you assign the expression x+y to a, quoting it as an expression with Expr, then whenever a is evaluated, it evaluates the expression using the current values of x and y and returns the result.
Exceptions are the utilities Show, Write, and Print, which do not evaluate expressions for pure name arguments.

 

x=5;
y=10;
a=expr(x+y);

Show( a ); // x + y 
Show(Name Expr(a)); // x + y 
Show(x+y); // 15
Show(x,y); // 5, 10

 

I wonder if Show, Write and Print are the only exceptions ...

 

0 REPLIES 0

Recommended Articles