 |
QuantShare
2010-08-29 20:23:38
0
|
|
Best Answer
Hi,
yes it is possible to pass a VectorD to a formula.
Here is an example:
QSFormula formula = cFunctions.CreateFormula("a = myfunction(c);");
formula.SetParameter("c", myVectorD);
formula.Compile();
VectorD myNewVectorD = formula.GetVectorDouble("a");
|
|