how to sum a vector without sum func
显示 更早的评论
given this elements:19^3 −17^3 +15^3 −13^3 +11^3 −9^3 +7^3 −5^3 +3^3 −1^3 notice the sign changing 9 times with 10 element again without sum function\ anyone idea?
1 个评论
James Tursa
2017-7-27
编辑:James Tursa
2017-7-27
Maybe use plus and minus functions? What have you done so far?
采纳的回答
更多回答(2 个)
Jan
2017-7-28
What about:
v = 19^3 - 17^3 + 15^3 - 13^3 + 11^3 - 9^3 + 7^3 - 5^3 + 3^3 - 1^3;
Jan de Jong
2017-7-31
编辑:Walter Roberson
2017-7-31
Or a little more general:
val = [19:-2:1]'; sig = -cos(pi*[1:10]);
s = sig*val.^3;
2 个评论
yuval ohayon
2017-7-31
Jan de Jong
2017-7-31
It will give an alternating sequence to account for the sign change in the sum.
类别
在 帮助中心 和 File Exchange 中查找有关 Debugging and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!