You can put the parameters in a worksheet.
And create a new worksheet to specify the points from the function. Define a column for X values in the worksheet, and select the second column, from Main Menu, Select: Column: Set Column Values.
Type the following scripts to define the range of the parameter columns in the bottom "Before Formula Scripts" Listbox of the opened "Set Values" Dialog.
range aa=1!; //Define the range of parameters' worksheet.
range p1=%(aa)1; //Assume p1 is stored in first column
range p2=%(aa)2; //Assume p2 is stored in second column
range p3=%(aa)3; //Assume p3 is stored in third column
Then on the top Listbox, you can specify your function to create Y values. Definition for your function is as follows.
(0.00048*Col(A)*p1[1]+p2[1]*(1-Col(A))*p3[1])/(0.00048*Col(A)+p2[1]*(1-Col(A)));
The above script creates Y values for the first row of Parameters' worksheet. Y values can be updated automatically as the first row's values of Parameters' worksheet change.
You can add more columns to create Y values for other rows of Parameters' worksheet, and use these Y values to create multiple plots.
Sam
OriginLab Technical Services