Bin my Data set

5 views (last 30 days)
Kaelyn
Kaelyn on 1 Dec 2012
Hello I am trying to bin my data down. I have a data set and when I graph it I do not want to it be the raw data exactly. so far I have I don't know where to go from here. I am trying to get the velocity numbers that are between 1 and 2 and take the average and plot this point.
%Code
v=data(:,2); w=zeros(1,13);
for j=1:9995 %number of data points
for i=1:14;___ % velocity parameters
if v(i)>1 && v(i)<=2;
w(i+1)=w(i+1)+v(j);
N=mean(w(i+1));
end
end
end
figure(1) plot(N,'*');

Accepted Answer

Matt Fig
Matt Fig on 1 Dec 2012
Edited: Matt Fig on 1 Dec 2012
v = data(:,2); % Velocity
mv12 = mean(v(v>=1 & v<=2)) % Mean of velocity on [1 2].
  1 Comment
Kaelyn
Kaelyn on 1 Dec 2012
Thanks it gave me the right answer :)

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!