How to take a mean from a range of values
3 ビュー (過去 30 日間)
古いコメントを表示
Hi, I have variables that look something like this (simplified):
x = [1 2 3 4 5]
y = [10 20 30 40 50]
I then plotted x and y. Now, I want to take the mean value of y from x = 2.5-4.5.
I'm not sure how to take a mean of a range of values.
Thanks!
0 件のコメント
採用された回答
the cyclist
2023 年 5 月 4 日
x = [1 2 3 4 5];
y = [10 20 30 40 50];
xInRange = (x>2.5) & (x<=4.5);
mean(y(xInRange))
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!