I get an error message with the following equation block lines:
V=vector(6)
V[1]=?12776
Is there a different syntax or way to tune or optimize a vector, matrix or array elemnt?
Randy
V=vector(6)
V[1]=?12776
Is there a different syntax or way to tune or optimize a vector, matrix or array elemnt?
Randy
Sure, try this
X=?1234
Y=[X;1;1;1]
- or -
X=?1234
Y=vector(6)
Y[1] = X
Now as you tune X the first value of Y will tune.
Regards,
Mark