Sum of numeric string.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (2)
Naz
el 30 de Nov. de 2011
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 comentarios
Walter Roberson
el 30 de Nov. de 2011
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 comentarios
Walter Roberson
el 30 de Nov. de 2011
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)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!