/usr/include/openturns/swig/TriangularMatrix_doc.i is in libopenturns-dev 1.7-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | %feature("docstring") OT::TriangularMatrix
"Hermitian Matrix.
Available constructors:
TriangularMatrix(*dim*)
TriangularMatrix(*dim, isLower*)
Parameters
----------
dim : integer
The dimension of the triangular matrix (square matrix with *dim* rows and
*dim* columns).
isLower : bool
Flag telling if the matrix is triangular lower (*True*) or upper (*False*).
Default is *True*.
See also
--------
Matrix
Notes
-----
The triangular matrix is filled with 0."
// ---------------------------------------------------------------------
%feature("docstring") OT::TriangularMatrix::isLowerTriangular
"Test whether the matrix is lower triangular or upper triangular.
Returns
-------
isLower : bool
Flag telling if the matrix is triangular lower (*True*) or upper (*False*)."
|