Bin my Data set

2 次查看(过去 30 天)
Kaelyn
Kaelyn 2012-12-1
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,'*');

采纳的回答

Matt Fig
Matt Fig 2012-12-1
编辑:Matt Fig 2012-12-1
v = data(:,2); % Velocity
mv12 = mean(v(v>=1 & v<=2)) % Mean of velocity on [1 2].

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Spectral Measurements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by