Lines Matching refs:sm2
17 SparseMatrix<std::complex<double>,RowMajor> sm2;
35 // Initialize sm2 with sm1.
36 SparseMatrix<double,Rowmajor> sm2(sm1), sm3;
110 sm3 = sm1 + sm2;
111 sm3 = sm1 - sm2;
112 sm2 += sm1;
113 sm2 -= sm1; \endcode
116 sm1 and sm2 should have the same storage order
123 sm3 = s1 * sm1 + s2 * sm2; sm3 /= s1;\endcode
132 sm3 = sm1 * sm2;
143 sm2 = sm1.transpose();
144 sm2 = sm1.adjoint();
156 sm2 = sm1 * perm; //Permute the columns
157 sm2 = perm * sm1; // Permute the columns
169 sm1.cwiseProduct(sm2);
170 sm1.cwiseQuotient(sm2);
171 sm1.cwiseMin(sm2);
172 sm1.cwiseMax(sm2);
177 sm1 and sm2 should have the same storage order
205 sm2.rightCols(size);
217 sm2 = sm1.triangularview<Lower>();
218 sm2 = sm1.selfadjointview<Lower>();