Click or drag to resize

MatrixStorageTAt(Int32, Int32, T) Method

Sets the element without range checking.

Namespace: Altaxo.Calc.LinearAlgebra.Storage
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public abstract void At(
	int row,
	int column,
	T value
)

Parameters

row  Int32
The row of the element.
column  Int32
The column of the element.
value  T
The value to set the element to.
Remarks
WARNING: This method is not thread safe. Use "lock" with it and be sure to avoid deadlocks.
See Also