Taking Mean/average
1 view (last 30 days)
Show older comments
I have a matrix V of 262080x1 in which I want to take average of first 15 values and store in new matrix say V1 then take next 15 values (16-30) take average and store in V1 again and this goes on to size of V.
0 Comments
Answers (1)
Azzi Abdelmalek
on 29 Apr 2016
Edited: Azzi Abdelmalek
on 29 Apr 2016
v=rand(262080,1); %--Example----
v1=mean(reshape(v,15,[]))
0 Comments
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!