Lines Matching full:partial
96 \section TutorialReductionsVisitorsBroadcastingPartialReductions Partial reductions
97 Partial reductions are reductions that can operate column- or row-wise on a Matrix or
99 returning a column or row-vector with the corresponding values. Partial reductions are applied
128 \subsection TutorialReductionsVisitorsBroadcastingPartialReductionsCombined Combining partial reductions with other operations
129 It is also possible to use the result of a partial reduction to do further processing.
131 within a matrix. With column-wise partial reductions this can be coded as:
164 The concept behind broadcasting is similar to partial reductions, with the difference that broadcasting
213 reductions and partial reductions.
215 Now that broadcasting, reductions and partial reductions have been introduced, we can dive into a more advanced example that finds
217 computing the squared Euclidean distance with the partial reduction named \link MatrixBase::squaredNorm() squaredNorm() \endlink:
244 - <tt>(m.colwise() - v).colwise().squaredNorm()</tt> is a partial reduction, computing the squared norm column-wise. The result of