HOW TO PERFORM THIS EQUATION IN MATLAB?u=∑_(i=1)^t▒(i*p_i/w)
조회 수: 2 (최근 30일)
이전 댓글 표시
I NEED MATLAB CODING FOR THIS FORMULA
댓글 수: 1
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
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!