Lines Matching refs:reductions
5 This page explains Eigen's reductions, visitors and broadcasting and how they are used with
12 scalar value. One of the most used reductions is \link DenseBase::sum() .sum() \endlink,
59 \subsection TutorialReductionsVisitorsBroadcastingReductionsBool Boolean reductions
61 The following reductions operate on boolean values:
77 \subsection TutorialReductionsVisitorsBroadcastingReductionsUserdefined User defined reductions
106 \section TutorialReductionsVisitorsBroadcastingPartialReductions Partial reductions
107 Partial reductions are reductions that can operate column- or row-wise on a Matrix or
109 returning a column or row vector with the corresponding values. Partial reductions are applied
137 …uctionsVisitorsBroadcastingPartialReductionsCombined Combining partial reductions with other opera…
140 within a matrix. With column-wise partial reductions this can be coded as:
173 The concept behind broadcasting is similar to partial reductions, with the difference that broadcas…
222 reductions and partial reductions.
224 Now that broadcasting, reductions and partial reductions have been introduced, we can dive into a m…