Home | History | Annotate | Download | only in test

Lines Matching refs:selfadjointView

74   m2.col(0).noalias() = m1.template selfadjointView<Upper>() * m1.col(0);
75 m2.col(0).noalias() -= m1.adjoint().template selfadjointView<Upper>() * m1.col(0);
76 m2.col(0).noalias() -= m1.template selfadjointView<Upper>() * m1.row(0).adjoint();
77 m2.col(0).noalias() -= m1.adjoint().template selfadjointView<Upper>() * m1.row(0).adjoint();
79 m2.row(0).noalias() = m1.row(0) * m1.template selfadjointView<Upper>();
80 m2.row(0).noalias() -= m1.row(0) * m1.adjoint().template selfadjointView<Upper>();
81 m2.row(0).noalias() -= m1.col(0).adjoint() * m1.template selfadjointView<Upper>();
82 m2.row(0).noalias() -= m1.col(0).adjoint() * m1.adjoint().template selfadjointView<Upper>();
85 m2.template selfadjointView<Lower>().rankUpdate(m1.col(0),-1);
86 m2.template selfadjointView<Lower>().rankUpdate(m1.row(0),-1);
90 // m1.template selfadjointView<Lower>().rankUpdate(m2);
92 // m1 += m1.template selfadjointView<Lower>() * m2;