HOW TO PERFORM THIS EQUATION IN MATLAB?u=∑_(i=1)^t▒(i*p_i/w)
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I NEED MATLAB CODING FOR THIS FORMULA
1 Kommentar
Jan
am 9 Okt. 2013
Uppercase means shouting in internet forums.
I see a strange character containing a lot of dots behind the "t". What does this mean?
Akzeptierte Antwort
Ahmed
am 9 Okt. 2013
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!