Sum of numeric string.
3 次查看(过去 30 天)
显示 更早的评论
I have a mathematical function.This's a numeric string. How can i calculate sum of numeric string? Example: Sum of (1/3^n) with n from n to extend at infinity And what is symbol of infinity in matlab? Thanks.
0 个评论
回答(2 个)
Naz
2011-11-30
I hope you realize that computer has finite memory and can not run it forever to reach your infinity, so you gonna have to stop somewhere :). Here's what you can do:
yoursum=0;
y='1/3^n';
f=inline(y);
for x=1:1000
yoursum=yoursum+f(x);
end
yoursum
0 个评论
Walter Roberson
2011-11-30
If you have the symbolic toolbox,
syms n
symsum(sym('1/3')^n, n, n, inf)
Please, though, recheck that your lower bound is really "n" just like the variable of summation. Using the same variable in both places can lead to some odd calculations. Did you perhaps mean that n should be from 1 to infinity? If so then put 1 in place of the parameter that is before infinity (the lower bound of the summation.)
2 个评论
Walter Roberson
2011-11-30
I do not know why that code would not show s1 . Unfortunately I cannot test it myself.
You could try
s1 = symsum(1/k^2,k,1,inf)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!