Hi All,
I run a non-linear regression using proc model. Proc model as you know have two options of restrictions on parameters: bound and restrict.
I have almost same restriction that returns 100 times, for example :
x1*x2*a+x3*b*t = k(t), when t=0.25,0.5,0.75,....,25 and k is fixed(number) for each t. i.e each t has different k
x1, x2, x3 - parameters
It looks like :
x1*x2*a+x3*b*0.25 = 60
x1*x2*a+x3*b*0.5 = 75
x1*x2*a+x3*b*0.75 = 79
...
Is there any way to write these restrictions in proc model in one restrict? Maybe put t and k into a dataset, that i could take the values from there?
Thank you