我如何从 GAMS 中的集合中获取特定索引的元素?

How can I get an element of a particular index from a set in GAMS?

假设我在 GAMS 中设置了“代码”:

SET    
      codes /aaa, aab, aac, aad, aae/;

然后我怎么说在 GAMS 中获取集合中的第 3 个元素(或任何元素)?

您正在寻找这样的 "ord" 运算符吗?

SET
      codes /aaa, aab, aac, aad, aae/
      selected(codes);

selected(codes) = ord(codes)=3;

Display selected;