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 virtual void DivideAt(
int row,
int column,
T value
)
Public Overridable Sub DivideAt (
row As Integer,
column As Integer,
value As T
)
public:
virtual void DivideAt(
int row,
int column,
T value
)
abstract DivideAt :
row : int *
column : int *
value : 'T -> unit
override DivideAt :
row : int *
column : int *
value : 'T -> unit
Parameters
- row
- Type: SystemInt32
The row of the component. - column
- Type: SystemInt32
The column of the component. - value
- Type: T
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: 6.0
Reference