Bin my Data set

2 Ansichten (letzte 30 Tage)
Kaelyn
Kaelyn am 1 Dez. 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,'*');

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by