Effacer les filtres
Effacer les filtres

average and standard deviation of one column of a matrix

1 vue (au cours des 30 derniers jours)
altaf ahmed
altaf ahmed le 5 Mai 2019
Commenté : per isakson le 7 Mai 2019
I want to calcualte the average and standard deviation for one column of a 1000x10 matrix.
Is there a quicker/efficient way or should I use existing code :
theSum = 0;
for k = 1 : length(x)
theSum = theSum + x(k);
end
theMean = theSum / length(x);

Réponse acceptée

per isakson
per isakson le 5 Mai 2019
Modifié(e) : per isakson le 5 Mai 2019
  2 commentaires
altaf ahmed
altaf ahmed le 5 Mai 2019
Few more question as it was not clear to me hence asking - My data in the matrix is delay values, so can these std and mean commands be operated on an entire matrix of 1000x10 i.e. result is obtained based on all columns rather than just one?
2- Also is there a way to build up histogram data based on this matrix, e.g. below:
2a- number of occurences for minimum value, maximum value and average value
2b- how to obtain 90 percentile from this data (i.e., the delay that is surpassed by at most 10% of the occurences)
per isakson
per isakson le 7 Mai 2019
"result is obtained based on all columns rather than just one? " Yes
X = rand(5);
mean(X(:)), std(X(:))
"2a- number of occurences for ..." The values of the "matrix of 1000x10" are they whole numbers?
"2b- how to obtain 90 percentile" see prctile Percentiles of a data set

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Time Series dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by