PermutationMatrix.IsElementWritable Method

Returns whether the value of the component at the specified row and column can be changed.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public override bool IsElementWritable(
	int row,
	int column
)

Parameters

row  Int32
The zero-based row index of the element to get or set.
column  Int32
The zero-based column index of the element to get or set.

Return Value

Boolean
Always returns false.

Remarks

If you attempt to set a component that is read-only, an exception of type ComponentReadOnlyException is thrown.

See Also