Evaluate instance map at a set of points.
Namespace: TPSAAssembly: TPSA (in TPSA.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public double[][] Eval(
double[][] args
) |
| Visual Basic |
|---|
Public Function Eval ( _
args As Double()() _
) As Double()() |
| Visual C++ |
|---|
public:
array<array<double>^>^ Eval(
array<array<double>^>^ args
) |
Parameters
- args
- Type: array<array<System..::..Double>[]()[][]>[]()[][]
A set of points in a jagged array.
Return Value
A list of points in a jagged array.
Exceptions
| Exception | Condition |
|---|
| [ApplicationException] | The number of arguments in any of the points is not equal to the number of variables in the algebra. |
See Also