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);
268 sm1 = sm2.transpose();
269 sm1 = sm2.adjoint();
291 sm3 = sm1 * sm2;
292 sm3 = 4 * sm1.adjoint() * sm2;
296 sm3 = (sm1 * sm2).pruned(); // removes numerical zeros
297 sm3 = (sm1 * sm2).pruned(ref); // removes elements much smaller than ref
298 sm3 = (sm1 * sm2).pruned(ref,epsilon); // removes elements smaller than ref*epsilon
304 sm2 = P * sm1;
305 sm2 = sm1 * P.inverse();
306 sm2 = sm1.transpose() * P;
327 sm2 = sm1.selfadjointView<Upper>(); // makes a full selfadjoint matri…
328 sm2.selfadjointView<Lower>() = sm1.selfadjointView<Upper>(); // copies the upper triangular pa…
333 sm2 = A.selfadjointView<Upper>().twistedBy(P); // compute P S P' fro…
334 sm2.selfadjointView<Lower>() = A.selfadjointView<Lower>().twistedBy(P); // compute P S P' fro…