TriW¶
An \(n \times n\) TriW matrix of order \(k\) is a banded upper-triangular matrix with its main diagonal set to one and its \(k\) super-diagonals each set to some value \(\alpha\). This family of matrices was regularly employed by Wilkinson.
C++ API¶
-
void
TriW
(AbstractDistMatrix<T> &A, Int n, T alpha, Int k)¶
C API¶
-
ElError
ElTriW_c
(ElMatrix_c A, ElInt n, complex_float alpha, ElInt k)¶
-
ElError
ElTriW_z
(ElMatrix_z A, ElInt n, complex_double alpha, ElInt k)¶
-
ElError
ElTriWDist_c
(ElDistMatrix_c A, ElInt n, complex_float alpha, ElInt k)¶
-
ElError
ElTriWDist_z
(ElDistMatrix_z A, ElInt n, complex_double alpha, ElInt k)¶