Matrix<T>.EnsureWritable Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

EnsureWritable() Ensures that the element at the specified index in the vector can be written to.
EnsureWritable(Int32, Int32) Ensures that the element at the specified index in the vector can be written to.
EnsureWritable(Int32, Int32, Int32, Int32) Ensures that the element at the specified index in the vector can be written to.

EnsureWritable

Ensures that the element at the specified index in the vector can be written to.
C#
public void EnsureWritable()

EnsureWritable(Int32, Int32)

Ensures that the element at the specified index in the vector can be written to.
C#
public void EnsureWritable(
	int row,
	int column
)

Parameters

row  Int32
 
column  Int32
 

EnsureWritable(Int32, Int32, Int32, Int32)

Ensures that the element at the specified index in the vector can be written to.
C#
public void EnsureWritable(
	int startRow,
	int endRow,
	int startColumn,
	int endColumn
)

Parameters

startRow  Int32
 
endRow  Int32
 
startColumn  Int32
 
endColumn  Int32
 

See Also