Obtain the mean angle (circle mean of a file)
Mostra commenti meno recenti
Hi, first of all, thank you for reading me, i need something very simple but i can't find a good program to do this...
The average of wind direction data.
i am using matlab 2019a, and have all this data (for a year) and i need the average of this data (attach photo) for every row (this data are in degree, so this not regular mean is circle mean that i need) , so every 10 minutes, so in the end i want to have only one column, i am using meanangle, but i don't obtain good results.
don't obtain good results.
don't obtain good results. if you can help me I would appreciate it too much
Risposta accettata
Più risposte (2)
Jessica Langsdale
il 5 Ago 2020
%enter the number of rows here
arraySize=5;
meanData=zeros(arraySize,1)
for i=1:5
meanData(i)=mean(originalData(i,:))
end
Replace all the variables with your stuff. I think this is what you need? I'm not quite sure what you mean by 'circle mean' but this fits the description of the second half of your question.
1 Commento
Ana Soph
il 5 Ago 2020
Categorie
Scopri di più su RF Toolbox in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
