Can a number in an array be replaced by a variable?
For example, in the drawing of JSL the following valuesColor Levels([-7.28 -1.99 3.3 8.59 13.88]);
How can I write code in this form?x1=-7.28;
x2=13.88;
Color Levels([x1 -1.99 3.3 8.59 x2]);
Thanks!