public bool IsUpperHessenberg { get; }
Public ReadOnly Property IsUpperHessenberg As Boolean
Get
public:
virtual property bool IsUpperHessenberg {
bool get () sealed;
}
abstract IsUpperHessenberg : bool with get
override IsUpperHessenberg : bool with get
A matrix is upper Hessenberg if it is square and has zero entries below its first sub-diagonal.
Let be a matrix, and consider its generic entry
where and
are the
number of rows and columns of
, respectively.
If , the matrix has
sub-diagonals: for
, the
-th sub-diagonal is the collection of entries
corresponding to the positions
Hence IsUpperHessenberg
returns true if and
whenever
.