how to obtain a vector contains a mean of other vector

1 回表示 (過去 30 日間)
bay rem
bay rem 2015 年 12 月 16 日
コメント済み: bay rem 2015 年 12 月 16 日
i have an array describes x and y values of 3 points
v=[26 196 27 196 28 196]
i wanna have as a result a vector that :
v1= [mean of(26,27,28) mean of (196,196,196)]
thank you for the help

採用された回答

Mohammad Abouali
Mohammad Abouali 2015 年 12 月 16 日
v=[26 196 27 196 28 196];
v1=[mean(v(1:2:end)) mean(v(2:2:end))]
v1 =
27 196
You really need to have a look at MATLAB Primer.
  1 件のコメント
bay rem
bay rem 2015 年 12 月 16 日
thank you so much ^^

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by