No Parameter values (X & Y Axis) in 3D Graph Viewer

Hi Seniors -

I am trying to Optimize using the Discrete Pram as per code below.

But when I go to 3D graph Viewer, i see x & y scale with no values. Why is it so?

RBody_param = ParamStr("RBody", "50, 90, 150"); 
RBody_value = StrToNum(StrExtract(RBody_param, Optimize("RBody_index", 0, 0, 2, 1), ','));

RVOL_param = ParamStr("RVOL", "5, 10, 20, 30, 50"); 
RVOL_value = StrToNum(StrExtract(RVOL_param, Optimize("RVOL_index", 0, 0, 4, 1), ','));

There is a value displayed on Y axis, but you need a lot more parameter values (at least 10 values in each dimension) .

What you have now is way too small search space and not enough data for 3D chart.

Minimum search space for 3D chart is 10x10.

3x5 that you have now is way way way too small.

Reasonable search space for 3D chart is 100x100 or more

This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.