Matrix<T>.TryEnsureWritable Method

Definition

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

Overload List

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

TryEnsureWritable

Ensures that the element at the specified index in the vector can be written to.
C#
public virtual bool TryEnsureWritable()

Return Value

Boolean

TryEnsureWritable(Int32, Int32)

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

Parameters

row  Int32
 
column  Int32
 

Return Value

Boolean

TryEnsureWritable(Int32, Int32, Int32, Int32)

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

Parameters

startRow  Int32
 
endRow  Int32
 
startColumn  Int32
 
endColumn  Int32
 

Return Value

Boolean

See Also