How do I average a data which runs on a cycle?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a data file that goes like -1 0.2 -0.5 0.15 0 0.143 0.5 0.122 1 0.1234 1 0.233 0.5 0.32 0 0.322 -0.5 1.22 -1 1.333 then cycle 2 which has same x values but different y values . the cylce continues for 100 times. i want to have a average of y values for each x values.so finally i have the average y value
0 commentaires
Réponse acceptée
John D'Errico
le 24 Nov 2014
It can form the mean y value for each independent x. It could even be used to compute a standard deviation of y within each x.
3 commentaires
John D'Errico
le 25 Nov 2014
Then you need to tell consolidator that there are two types of points. Thus you have an increasing section and a decreasing one. Flag each point with a 1 or -1 that indicates which way the cycle is going. Then use consolidator with the 2 dimensional input to distinguish which elements to average.
Plus de réponses (1)
Thorsten
le 24 Nov 2014
Modifié(e) : Thorsten
le 24 Nov 2014
Read your data into one big 100xN matrix D (e.g., using dlmread) and then use mean(D). Voila.
4 commentaires
Thorsten
le 26 Nov 2014
But in your example you have only x values that run from -1 to 1 and back from 1 to -1. So what do the real data look like? Could you provide the file?
Voir également
Catégories
En savoir plus sur Spreadsheets dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!