Function handle of a sum

5 Ansichten (letzte 30 Tage)
Bernoulli Lizard
Bernoulli Lizard am 15 Mär. 2013
Bearbeitet: Matt J am 24 Apr. 2015
How can I define a function that involves a summation?
for example, a function f = @(x) e^(-n*x), where the function is a sum of terms over some range of n?
Thanks
  1 Kommentar
Bernoulli Lizard
Bernoulli Lizard am 15 Mär. 2013
Actually it's slightly more complicated than that. I need the function to be of another function of n, so something of the form
f = @(x) exp( -g(n) * x ), summed over some range of n.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Matt J
Matt J am 15 Mär. 2013
Bearbeitet: Matt J am 15 Mär. 2013
Assuming g(n) has vectored input/output, just do
f=@(x) sum( exp( -g(1:n) .* x )); %sum over 1...n
with obvious modifications for different ranges of n.
  2 Kommentare
Bryan Engelhardt
Bryan Engelhardt am 24 Apr. 2015
Bearbeitet: Matt J am 24 Apr. 2015
The function doesn't work for me when integrating. In other words,
g = [1,2]
f = @(x) sum( exp( -g(1:2) .* x));
integral(f,0,1);
gives me a matrix dimension error. How do I fix this?
Matt J
Matt J am 24 Apr. 2015
Bearbeitet: Matt J am 24 Apr. 2015
g = [1,2]
f = @(x) sum( exp( -g(1:2) .* x));
F= @(X) arrayfun(f,X);
integral(F,0,1);
or
integral(f,0,1,'ArrayValued',1);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by