Mean automation from excel data
1 回表示 (過去 30 日間)
古いコメントを表示
Hi, Let's say we have the following data, and I would like to obtain the mean of pressure for speed 20 only. Then I am also interested to obtain mean for speeds 40 only, 60 only... I am using excel for this but matlab would be a better option for automation from my opinion as the data is huge.Thank you.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160500/image.png)
2 件のコメント
Muhammad Usman Saleem
2016 年 4 月 8 日
can you add your sample excel file please? I want to check repeatition
採用された回答
Andrei Bobrov
2016 年 4 月 8 日
ps = xlsread('yourdata.xlsx');
[speed,~,c] = unique(ps(:,2));
pressure_mean = accumarray(c,ps(:,1),[],@mean);
out = [pressure_mean, speed];
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!