Lines Matching refs:sm2
242 sm1+sm2 sm1-sm2 sm1.cwiseProduct(sm2)
246 sm4 = sm1 + sm2 + sm3;
248 sm1, sm2, and sm3 must all be row-major or all column-major.
258 sm2 = sm1.cwiseProduct(dm1);
272 sm1 = sm2.transpose();
273 sm1 = sm2.adjoint();
295 sm3 = sm1 * sm2;
296 sm3 = 4 * sm1.adjoint() * sm2;
300 sm3 = (sm1 * sm2).pruned(); // removes numerical zeros
301 sm3 = (sm1 * sm2).pruned(ref); // removes elements much smaller than ref
302 sm3 = (sm1 * sm2).pruned(ref,epsilon); // removes elements smaller than ref*epsilon
308 sm2 = P * sm1;
309 sm2 = sm1 * P.inverse();
310 sm2 = sm1.transpose() * P;
325 SparseMatrix<double,RowMajor> sm2;
326 sm2.row(i) = ...;
327 sm2.topRows(nrows) = ...;
328 sm2.middleRows(i,nrows) = ...;
329 sm2.bottomRows(nrows) = ...;
351 sm2 = sm1.selfadjointView<Upper>(); // makes a full selfadjoint matri…
352 sm2.selfadjointView<Lower>() = sm1.selfadjointView<Upper>(); // copies the upper triangular pa…
357 sm2 = A.selfadjointView<Upper>().twistedBy(P); // compute P S P' fro…
358 sm2.selfadjointView<Lower>() = A.selfadjointView<Lower>().twistedBy(P); // compute P S P' fro…