Divides the component at the specified location by a value.
Namespace: Extreme.Mathematics.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public override void DivideAt(
int row,
int column,
double value
)
Public Overrides Sub DivideAt (
row As Integer,
column As Integer,
value As Double
)
public:
virtual void DivideAt(
int row,
int column,
double value
) override
abstract DivideAt :
row : int *
column : int *
value : float -> unit
override DivideAt :
row : int *
column : int *
value : float -> unit
Parameters
- row
- Type: SystemInt32
The row of the component. - column
- Type: SystemInt32
The column of the component. - value
- Type: SystemDouble
The divisor.
Looking up a component in a sparse matrix is a relatively expensive operation.
It is therefore more efficient to get and set the value of a component
in one function call that performs the lookup only once.
Numerical Libraries
Supported in: 5.x, 4.x
Reference