summation using syms and rounding
Mostrar comentarios más antiguos
is this way correct?Also want the number rounded to the first dp.
syms k
f = k-4/k-5;
v1 = subs(f, k, 1:3)
s_sum = sum(v1)
v2=subs(f,k,6:100)
s_sum2=sum(v2)
f=(0-4)/(0-5)
sum=s_sum+s_sum2+f
value = round(sum * 10) / 10
6 comentarios
Walter Roberson
el 18 de Mzo. de 2019
No, that is a product symbol, not a summation symbol.
Also, k-4/k-5 is parsed as (k-(4/k))-5
Walter Roberson
el 19 de Mzo. de 2019
(k-4)/(k-5)
dulanga
el 19 de Mzo. de 2019
Torsten
el 19 de Mzo. de 2019
Because you have to multiply P1 and P2, not add them.
dulanga
el 19 de Mzo. de 2019
Respuestas (0)
Categorías
Más información sobre Calculus en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!