How to find the lowest average of 3 consecutive numbers in a vector ?
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I need to find the lowest average of consecutive 3-value blocks (ie. (n,n+1,n+2), (n+1,n+2,n+3), (n+2,n+3,n+4) in a vector which has variable length (=number of elements does not have to be a multiple of the block size). Is there an easy way without using nested loops?
Thanks a lot.
0 个评论
采纳的回答
Walter Roberson
2017-1-8
[minAvg, minidx] = min((V(1:end-2) + V(2:end-1) + V(3:end))/3);
This returns both the actual average and the location that it starts at.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!