Mean automation from excel data
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Yogesh T L
el 8 de Abr. de 2016
Comentada: Yogesh T L
el 8 de Abr. de 2016
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.
2 comentarios
Muhammad Usman Saleem
el 8 de Abr. de 2016
can you add your sample excel file please? I want to check repeatition
Respuesta aceptada
Andrei Bobrov
el 8 de Abr. de 2016
ps = xlsread('yourdata.xlsx');
[speed,~,c] = unique(ps(:,2));
pressure_mean = accumarray(c,ps(:,1),[],@mean);
out = [pressure_mean, speed];
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!