Previous Page | Next Page

The OPTMODEL Procedure

CARD Function

CARD( set-expression ) ;

The CARD function returns the number of members of its set operand. For example, the following code produces the output 3 since the set has 3 members:

proc optmodel;
   put (card(1..3));


Previous Page | Next Page | Top of Page