I defined a set in GAMS to represent users number. I need to use the set multiple times to define transmission power for each user, the channel quality...etc. However, I think in GAMS you can not use the name of the set for different variables, My question is do I need to define a different set for each variable?
Code example:
set I number of users /i1,i2/ ; Parameters CP(I) circuit power per user / i1 10 i2 10 / h(I) channel quality / i1 48.9318 i2 106.2280/ ;
Thank you in advance for any help or for any hints.