Composed Complex Matrix<T>.Get Diagonal Method
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Get | Gets a vector view of the diagonal elements of this instance. |
Get | Gets a vector view of the specified diagonal of this instance. |
Get | Gets a complex vector view of the specified diagonal of this instance. |
GetDiagonal(Int32, Intent)
Gets a complex vector view of the specified diagonal
of this instance.
public override Vector<Complex<T>> GetDiagonal(
int index,
Intent intent
)
Parameters
- index Int32
- The index of the diagonal. A value of zero indicates the main diagonal. A value greater than zero indicates a super-diagonal. A value less than zero indicates a sub-diagonal.
- intent Intent
- An Intent value that specifies the intended use of the diagonal vector.
Return Value
Vector<Complex<T>>A Vector<T> view of the specified diagonal of this ComposedComplexMatrix<T>.
Remarks
This property returns a vector view of the diagonal. Changing the elements of this Vector<T> will also change the corresponding elements of the underlying ComposedComplexMatrix<T>. If you want the result to be independent of the underlying matrix, use the CloneData() method on the result.
Exceptions
Argument | index is less than or equal to - RowCount, or greater than or equal to ColumnCount. |