how can i convert the 1 sec file to 1 min by averageing the reading of each 60 rows and the program repeat it every 60 rows?
1 次查看(过去 30 天)
显示 更早的评论
采纳的回答
dpb
2014-8-23
The Matlab "trick" for this is to rely on memory storage order...
x=mean(reshape(x,60,[])).';
leaves column vector of the averages of the 60-element columns created by the reshape operation. If you number of elements isn't precisely divisible by 60, you'll need to account for it in the second argument when reshape to the multiple or truncate first.
5 个评论
dpb
2014-8-23
It would, but why not use the facilities of Matlab array operations? It's the whole point of Matlab.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!