获得给定运行的传感器的平均值

时间:2012-06-04 14:28:21

标签: matlab mean

给定在100次运行中每次测量的许多传感器值。

 A =

 8     7     8     9     8     8     8     8     9     8

显示特定运行的值(让我们说每运行5​​次)

代码是:

C= B(1:5:end);

C=  8   8

我想要的是存储5次运行的平均值如何做到这一点?

answer should be = 8  8.2

1 个答案:

答案 0 :(得分:1)

我手头没有Matlab,但我会尝试mean(reshape(B,5,[]))之类的东西。