cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Discussions

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

Fast Flexible Filling design — JSL automation possible?

Hello,

I would like to ask a question about the Fast Flexible Filling (FFF) design in JMP.

I need to generate a large number of FFF designs.
However, I cannot find any JSL function or scripting reference that allows calling the FFF optimizer programmatically.

My questions are:

  1. Can the Fast Flexible Filling design be fully generated through JSL?
    (For example using DOE(), Space Filling Design(), or any hidden/undocumented functions)

  2. Or is the FFF optimizer GUI-only and cannot be accessed via scripting?

  3. If scripting is impossible, is there any officially recommended workflow to automate many FFF designs?

Environment:
JMP 19
Windows 11

Thank you!

1 REPLY 1
jthi
Super User

Re: Fast Flexible Filling design — JSL automation possible?

Example from scripting index

Names Default To Here(1);
d = DOE(Space Filling Design);
d << Space Filling Design Type(Fast Flexible Filling, 100);

That most likely gives a good idea what can be done when you combine it with different options DOE has with Add Response and so on.

-Jarmo

Recommended Articles