Composed Complex Matrix<T>.Is Element Writable Method
Gets whether the value of the element at
the specified row and column can be changed.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.7.0
C#
true if the outer composed matrix is writable, the corresponding real component is writable, and the corresponding imaginary component is writable when imaginary storage exists; otherwise, false.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.7.0
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
Booleantrue if the outer composed matrix is writable, the corresponding real component is writable, and the corresponding imaginary component is writable when imaginary storage exists; otherwise, false.
Exceptions
| Argument | column is less than zero or greater than or equal to the number of columns in this Matrix<T>. Or, row is less than zero or greater than or equal to the number of rows in this instance. |