Bin my Data set

4 ビュー (過去 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].
  1 件のコメント
Kaelyn
Kaelyn 2012 年 12 月 1 日
Thanks it gave me the right answer :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpectral Measurements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by