Create loop to extract mean of every 100 values
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have an array, 24000 X 31.
Is there a way of writing a for loop that can take every row of the array to create 31 rows each with 24000 values and then take the mean average of every 100 values in each row. The result should hopefully be 31 separate arrays each with 240 values.
Thanks in advance, Ed.
0 件のコメント
回答 (1 件)
David Hill
2022 年 2 月 3 日
newMatrix=reshape(mean(reshape(yourMatrix,100,[])),240,[]);%columns are each array
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!