/usr/include/openturns/swig/SquareMatrix.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 | // SWIG file SquareMatrix.i
// do not pass argument by reference, return it as tuple item
%typemap(in, numinputs=0) OT::SquareComplexMatrix & v ($*ltype temp) %{ temp = OT::SquareComplexMatrix(); $1 = &temp; %}
%typemap(argout) OT::SquareComplexMatrix & v %{ $result = SWIG_Python_AppendOutput($result, SWIG_NewPointerObj(new OT::SquareComplexMatrix(*$1), SWIG_TypeQuery("OT::SquareComplexMatrix *"), SWIG_POINTER_OWN | 0 )); %}
OT::SquareMatrix OT::SquareMatrix::computeEV(OT::SquareComplexMatrix & v, const Bool keepIntact = true);
%{
#include "SquareMatrix.hxx"
%}
%include SquareMatrix_doc.i
%rename(__pow__) OT::SquareMatrix::power(const UnsignedInteger n) const;
%include SquareMatrix.hxx
namespace OT {
%extend SquareMatrix {
SquareMatrix(const SquareMatrix & other) { return new OT::SquareMatrix(other); }
SquareMatrix(PyObject * pyObj) { return new OT::SquareMatrix( OT::convert<OT::_PySequence_,OT::SquareMatrix>(pyObj) ); }
OTMatrixAccessors()
SquareMatrix __truediv__(NumericalScalar s) { return (*self) / s; }
} // SquareMatrix
} // OT
|