フィルターのクリア

Mean column with step

3 ビュー (過去 30 日間)
tilfani oussama
tilfani oussama 2018 年 8 月 28 日
コメント済み: Matt J 2018 年 8 月 28 日
I have a column vector of n elements, i would like to calculate the mean with a step of 10 (the mean of 10th, 20th, and so on). thanks

採用された回答

Matt J
Matt J 2018 年 8 月 28 日
Or maybe you mean this,
out = mean(theVector(10:10:end))
  1 件のコメント
tilfani oussama
tilfani oussama 2018 年 8 月 28 日
I think this, may aim us to compute the mean of 10ith, 20th, 30th... If we assume that the vector reflects daily profits, i would like to compute over the full period (length of the vector) the average profit each 10 days! Thank you for your reply

サインインしてコメントする。

その他の回答 (1 件)

Matt J
Matt J 2018 年 8 月 28 日
編集済み: Matt J 2018 年 8 月 28 日
Assuming n is a multiple of 10 (otherwise you should pad the vector), you can use SEPBLOCKFUN (Download),
out = sepblockfun(theVector,[10,1],'mean')
  1 件のコメント
Matt J
Matt J 2018 年 8 月 28 日
tiffani commented
I think this is not my aim, the output will be a simple number, which is the mean each 10th elements in the vector, with this function sepblockfun i get a vector as output

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeNaNs についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by