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,
48 \subsection TutorialReductionsVisitorsBroadcastingReductionsBool Boolean reductions
50 The following reductions operate on boolean values:
66 \subsection TutorialReductionsVisitorsBroadcastingReductionsUserdefined User defined reductions
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 …uctionsVisitorsBroadcastingPartialReductionsCombined Combining partial reductions with other opera…
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 broadcas…
213 reductions and partial reductions.
215 Now that broadcasting, reductions and partial reductions have been introduced, we can dive into a m…