.. highlightlang:: us .. index:: cumprod .. _cumprod: cumprod ======== .. us.tag cumprod GERMAN math-base New5800 :ref:`cumprod` liefert das kumulierte Produkt der Elemente jeder Spalte einer Matrix. .. function:: rmCumprod = cumprod(rmMat) .. us.return **Returnwert** *rmCumprod* ist eine reelle Matrix mit kumulierten Produkten. .. us.params **Parameter** .. uparam:: rmMat *rmMat* ist eine reelle Matrix. .. us.example **Beispiel** :: a = [1,2,3; 4,5,6; 7,8,9] cumprod(a) 1.0000 2.0000 3.0000 4.0000 10.0000 18.0000 28.0000 80.0000 162.0000 .. us.history **History** .. list-table:: :header-rows: 1 * - Version - Beschreibung * - R2016 - New. .. seealso:: :ref:`uberblick-mathematik`, :ref:`diff`, :ref:`cumsum` :sub:`id-2100504`