symbolic integer, Why doesn't it work?

1 Ansicht (letzte 30 Tage)
Katalin Kuchinka
Katalin Kuchinka am 1 Feb. 2021
I want to find the sum:
I tried finding with symbolic integer
syms n t
evalin(symengine,'assume(n,Type::Integer)');
symsum(exp(-k^2*t),k,1,n-1)
or
syms n t
evalin(symengine,'assume(n,Type::Integer)');
symsum(exp(-k*k*t),k,1,n-1)
I have got the next answer

Antworten (1)

Shubham Rawat
Shubham Rawat am 4 Feb. 2021
Hi Katalin,
You may try this:
syms k t
evalin(symengine,'assume(n,Type::Integer)');
n = 3; %taking input from workspace
symsum(exp(-k*k*t),k,1,n-1)
Result :
ans =
exp(-t) + exp(-4*t)
Hope this Helps!
  1 Kommentar
Katalin Kuchinka
Katalin Kuchinka am 8 Feb. 2021
Thanks. But, I want to create a function f(t,n).
I need to find

Melden Sie sich an, um zu kommentieren.

Produkte


Version

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by