I have this OR model in GAMS and i need to define a parameters which has poisson distribution, my code is:
Scalar Landa 'mean for poisson distribution' /3/;
Parameter L;
L=Poisson;
I get the error $140 which means unknown symbol Does anybody know how to fix this?