diff --git a/src/docs/stan-reference/functions.tex b/src/docs/stan-reference/functions.tex index 9b8dbebdbf5..19da18a65b5 100644 --- a/src/docs/stan-reference/functions.tex +++ b/src/docs/stan-reference/functions.tex @@ -3007,6 +3007,20 @@ \subsection{Matrix Exponential} \fitem{matrix}{matrix\_exp}{matrix \farg{A}}{ The matrix exponential of \farg{A}} % + +% +\fitem{matrix}{matrix\_exp\_multiply}{matrix \farg{A}, matrix \farg{B}}{ +The multiplication of matrix exponential of \farg{A} and +matrix \farg{B}; algebraically equivalent to the less efficient form +\code{matrix\_exp(\farg{A}) * \farg{B}}.} +% + +% +\fitem{matrix}{scale\_matrix\_exp\_multiply}{real \farg{t}, matrix \farg{A}, matrix \farg{B}}{ +The multiplication of matrix exponential of \farg{t}\farg{A} and +matrix \farg{B}; algebraically equivalent to the less efficient form +\code{matrix\_exp(\farg{t}\farg{A}) * \farg{B}}.} +% \end{description}