Automatically change factor settings of a profiler object using a for loop
Hi all,I would like to automatically change the factor settings of a profiler object. If I address each factor directly it works as expected: dt = Open( "$SAMPLE_DATA/Tiretread.jmp" );
obj = dt << Profiler(
Y(
:Pred Formula ABRASION, :Pred Formula MODULUS, :Pred Formula ELONG,
:Pred Formula HARDNESS
),
Desirability Functions( 1 )
);
//works
obj << Term Value("SILICA"(5, Min( -10 ), Max( 6
...