Is the following sample mean and variance fully vectorised?

1 Ansicht (letzte 30 Tage)
Adarsh Kumar
Adarsh Kumar am 18 Mai 2019
Kommentiert: Adarsh Kumar am 18 Mai 2019
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.

Antworten (1)

madhan ravi
madhan ravi am 18 Mai 2019
Bearbeitet: madhan ravi am 18 Mai 2019
MATLAB already has inbuilt functions named mean() and var() .
  3 Kommentare
madhan ravi
madhan ravi am 18 Mai 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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by