FeynmanKacIBoundariesLeftBoundaries Method |
Returns the coefficient values of the left boundary conditions. There are
numLeftBounds conditions specified at the left end,
. The left boundary conditions are
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax void LeftBoundaries(
double time,
double[,] coefficients
)
Sub LeftBoundaries (
time As Double,
coefficients As Double(,)
)
void LeftBoundaries(
double time,
array<double,2>^ coefficients
)
abstract LeftBoundaries :
time : float *
coefficients : float[,] -> unit
Parameters
- time
- Type: SystemDouble
A double, the time point at which the boundary
coefficients are to be evaluated.
- coefficients
- Type: SystemDouble
An output double matrix of dimension
numLeftBounds by 4 containing the computed boundary
coefficient values. The coefficients are stored row-wise according
to the matrix scheme
Remarks
Time dependency of the boundary coefficients can be
controlled via method SetTimeDependence.
Use of this method will usually yield a more efficient
algorithm because some finite element matrices do not
have to be reassembled for each t value.
See Also