I would be grateful if someone could answer my question:
I have two param, how I can have a new param including their sum. For example:
Options randseed 0;
Param L:= 100;
Param x1 {1..10} := L*Uniform01();
Param y1 {1..10} := L*Uniform01();
Param x2 {0} := L/2;
Param y2 {0} := L/2;
How I can have this????👇🏻
Param x = summation param x1 and x2
Param y = summation param y1 and y2