Sets the matrix component at the specified position to the specified value.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public MustOverride Sub SetValue ( _
	value As Double, _
	row As Integer, _
	column As Integer _
)
C#
public abstract void SetValue (
	double value,
	int row,
	int column
)
C++
public:
virtual void SetValue (
	double value, 
	int row, 
	int column
) abstract

Parameters

value (System.Double)
A Double specifying the new value of the component.
row (System.Int32)
The zero-based row index of the element to get or set.
column (System.Int32)
The zero-based column index of the element to get or set.

Remarks

This method does not perform bounds checking. It is provided for optimized access in situations where the arguments are known to be within bounds. If either argument is outside its valid range, the effect may be unpredictable.