Is the following sample mean and variance fully vectorised?

1 visualizzazione (ultimi 30 giorni)
I wish to calculate the sample mean and the variance. The following is an attempt:
mu=sum(X)/m;
sigma2=sum((X-mu).^2)/m;
mu=mu.';
sigma2=sigma2.';
Is the above fully vectorised as I haven't used any loops (I'm new to this sort of vectorised implementation, so I'm not sure if this code above is fully vectorised or not)?
Any help is highly appreciated.

Risposte (1)

madhan ravi
madhan ravi il 18 Mag 2019
Modificato: madhan ravi il 18 Mag 2019
MATLAB already has inbuilt functions named mean() and var() .
  3 Commenti
madhan ravi
madhan ravi il 18 Mag 2019
The best what you can is you can compare the speed with your code and Matlab’s inbuilt function using tic toc . Looks to me that your code is already vectorised.

Accedi per commentare.

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by