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.
  • JMP multivariate capabilities let you understand relationships between multiple variables simultaneously. See how. Friday, Aug. 14, 2 pm US ET.

Discussions

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

How to enlarge pictures with JSL?

Big Class Families.jmp

Thanks!

2023-04-18_10-18-25.png

1 REPLY 1
jthi
Super User

Re: How to enlarge pictures with JSL?

<< Scale is one option

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class Families.jmp");

wait(1);
Column(dt, "Picture") << Set Each Value(
	img = :picture;
	img << scale(3);
	img;
);
-Jarmo

Recommended Articles