Lines Matching refs:matrices
70 …overloaded to provide write and read access to the coefficients of an array, just as with matrices.
87 Adding and subtracting two arrays is the same as for matrices.
105 … course you can multiply an array by a scalar, this works in the same way as matrices. Where arrays
106 are fundamentally different from matrices, is when you multiply two together. Matrices interpret
144 apply Matrix operations on arrays, or Array operations on matrices. Thus, if you need to do linear …
145 operations such as matrix multiplication, then you should use matrices; if you need to do coefficie…
148 access to all operations regardless of the choice of declaring objects as arrays or as matrices.
158 Mixing matrices and arrays in an expression is forbidden with Eigen. For instance, you cannot add a…
159 array directly; the operands of a \c + operator should either both be matrices or both be arrays. H…
167 <tt>result = m.array() * n.array()</tt> takes two matrices \c m and \c n, converts them both to an …
172 .cwiseProduct() \endlink method for matrices to compute the coefficient-wise product. This is also …
189 …<tt>(m.array() * n.array()).matrix() * m</tt> computes the coefficient-wise product of the matrices