Represents a function that can be used to set the components of a
SingleMatrix.
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics.SinglePrecision.Net40 (in Extreme.Numerics.SinglePrecision.Net40.dll) Version: 4.0.10170.0 (4.0.11003.0)
Syntax
| C# |
public delegate float SingleMatrixFiller(
int row,
int column
)
|
| Visual Basic (Declaration) |
Public Delegate Function SingleMatrixFiller ( _
row As Integer, _
column As Integer _
) As Single
|
| Visual C++ |
public delegate float SingleMatrixFiller(
int row,
int column
)
|
| F# |
type SingleMatrixFiller =
delegate of
row:int *
column:int -> float32
|
Return Value
The value of the component at the specified position.
See Also