how to plot the mean of values from swept data
1 回表示 (過去 30 日間)
古いコメントを表示
Hi everyone,
I have a array of data where I ramped one variable and measured another a number of times. I would like to find the average of the independent variable at each data point in order to plot this. Does anyone have any suggestions on how I could do this?
Cheers!
Em
0 件のコメント
採用された回答
Cris LaPierre
2020 年 11 月 17 日
Sure. Use groupsummary. Your grouping variable is your dependent variable, your method is 'mean', and your datavar is your independent variable.
Take the results and plot.
11 件のコメント
Cris LaPierre
2021 年 1 月 18 日
Ok, values in the first column of G are duplicated because the grouping is by e07 then VarName1. It is the unique combinations of these 2 variables that creates a group. For example
e07 VarName1
_________ ________
-9.17e-07 -19.4
-9.17e-07 -14.2
It sounds like perhaps you just want to group by VarName1? The just do
G = groupsummary(acetone,"VarName1","mean")
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Type Identification についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!