chore: remove invisible ~
This commit is contained in:
parent
c536e0b28b
commit
00cc5befc7
1 changed files with 4 additions and 4 deletions
|
@ -166,9 +166,9 @@ mean = mean(values)
|
||||||
variance = variance(values)
|
variance = variance(values)
|
||||||
\end{lstlisting}
|
\end{lstlisting}
|
||||||
|
|
||||||
Execution time : $ ~ 4.8 $ seconds
|
Execution time : $ 4.8 $ seconds
|
||||||
|
|
||||||
Memory usage : $ ~ 32 $ MB
|
Memory usage : $ 32 $ MB
|
||||||
|
|
||||||
\paragraph{Improved algorithm} Continuous calculation
|
\paragraph{Improved algorithm} Continuous calculation
|
||||||
|
|
||||||
|
@ -184,9 +184,9 @@ mean = Tot / N
|
||||||
variance = Tot2 / (N-1) - mean**2
|
variance = Tot2 / (N-1) - mean**2
|
||||||
\end{lstlisting}
|
\end{lstlisting}
|
||||||
|
|
||||||
Execution time : $ ~ 530 $ milliseconds
|
Execution time : $ 530 $ milliseconds
|
||||||
|
|
||||||
Memory usage : $ ~ 1.3 $ kB
|
Memory usage : $ 1.3 $ kB
|
||||||
|
|
||||||
\paragraph{Analysis} Memory usage is, as expected, much lower when calculating
|
\paragraph{Analysis} Memory usage is, as expected, much lower when calculating
|
||||||
the statistics on the fly. Furthermore, something we hadn't anticipated is the
|
the statistics on the fly. Furthermore, something we hadn't anticipated is the
|
||||||
|
|
Loading…
Reference in a new issue