Lines Matching refs:assignment
5 In Eigen, aliasing refers to assignment statement in which the same matrix (or array or vector) app…
6 left and on the right of the assignment operators. Statements like <tt>mat = 2 * mat;</tt> or <tt>m…
32 The output is not what one would expect. The problem is the assignment
36 This assignment exhibits aliasing: the coefficient \c mat(1,1) appears both in the block
37 <tt>mat.bottomRightCorner(2,2)</tt> on the left-hand side of the assignment and the block
38 <tt>mat.topLeftCorner(2,2)</tt> on the right-hand side. After the assignment, the (2,2) entry in th…
39 right corner should have the value of \c mat(1,1) before the assignment, which is 5. However, the o…
97 Now, \c mat(2,2) equals 5 after the assignment, as it should be.
132 right-hand side of an assignment operator, and it is then often necessary to evaluate the right-han…
148 In general, an assignment is safe if the (i,j) entry of the expression on the right-hand side depen…
204 an assignment operator.