フィルターのクリア

HOW TO PERFORM THIS EQUATION IN MATLAB?u=∑​_(i=1)^t▒(​i*p_i/w)

1 回表示 (過去 30 日間)
sheeba
sheeba 2013 年 10 月 9 日
コメント済み: Jan 2013 年 10 月 9 日
I NEED MATLAB CODING FOR THIS FORMULA
  1 件のコメント
Jan
Jan 2013 年 10 月 9 日
Uppercase means shouting in internet forums.
I see a strange character containing a lot of dots behind the "t". What does this mean?

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

採用された回答

Ahmed
Ahmed 2013 年 10 月 9 日
Here is a minimal example with random data. The last line is the actual answer to your question.
t = 100;
p = rand(1,t);
w = 0.5;
u = sum((1:t).*p/w)

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by