Computationally optimized versions for mean(), std(), and var()

Halved computation time for std() and var(), as well as a slight improvement for mean()
88 download
Aggiornato 29 nov 2016

Visualizza la licenza

The Mathworks-supplied functions for mean(), var() and std() calculation (especially the latter two) are severely suboptimal in many cases where the calculation is performed on a matrix without NaN values. While the Mathworks-supplied versions are versatile, this makes them slow. I therefore made condensed versions that accept only two inputs: an ND input matrix (first argument) and an integer specifying which dimension to calculate the metric over (second argument).

The resulting speed-up is around 50% of original computation time for xvar() and xstd(), and 95% for xmean(), but mileage may vary. The results of xvar(), xmean() and xstd() are the same as var(), mean(), and std() up to machine precision.
By Dr. Jorrit S. Montijn, 29-11-16 (dd-mm-yy; Universite de Geneve)
=======================
The included .pdfs show the performance of the original versions versus the updated versions, according to the Matlab Profiler on my personal machine.
Disclaimer: I've tested the performance increases only on my personal PC, so you may experience better or worse improvements depending on your setup.

Cita come

Jorrit Montijn (2024). Computationally optimized versions for mean(), std(), and var() (https://www.mathworks.com/matlabcentral/fileexchange/60449-computationally-optimized-versions-for-mean-std-and-var), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2015b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Problem-Based Optimization Setup in Help Center e MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0

Edited explanatory text