fixed #1477
authorAlexander Shishkov <no@email>
Sun, 4 Mar 2012 22:22:30 +0000 (22:22 +0000)
committerAlexander Shishkov <no@email>
Sun, 4 Mar 2012 22:22:30 +0000 (22:22 +0000)
modules/core/doc/operations_on_arrays.rst

index 4360e89..fcd8994 100644 (file)
@@ -1649,7 +1649,7 @@ The function ``meanStdDev`` computes the mean and the standard deviation ``M`` o
 
 .. math::
 
-    \begin{array}{l} N =  \sum _{I, \texttt{mask} (I)  \ne 0} 1 \\ \texttt{mean} _c =  \frac{\sum_{ I: \; \texttt{mask}(I) \ne 0} \texttt{src} (I)_c}{N} \\ \texttt{stddev} _c =  \sqrt{\sum_{ I: \; \texttt{mask}(I) \ne 0} \left ( \texttt{src} (I)_c -  \texttt{mean} _c \right )^2} \end{array}
+    \begin{array}{l} N =  \sum _{I, \texttt{mask} (I)  \ne 0} 1 \\ \texttt{mean} _c =  \frac{\sum_{ I: \; \texttt{mask}(I) \ne 0} \texttt{src} (I)_c}{N} \\ \texttt{stddev} _c =  \sqrt{\frac{\sum_{ I: \; \texttt{mask}(I) \ne 0} \left ( \texttt{src} (I)_c -  \texttt{mean} _c \right )^2}{N}} \end{array}
 
 When all the mask elements are 0's, the functions return ``mean=stddev=Scalar::all(0)`` .