If you try to define array variable with `parser.DefineVar("b", new double[]{ 6, 7, 8, 9, 10});` MuParser sees only variable `b` (that equals 6), but you can't to use other values like `b[1]`
If you try to define array variable with
parser.DefineVar("b", new double[]{ 6, 7, 8, 9, 10});MuParser sees only variable
b(that equals 6), but you can't to use other values likeb[1]