Borrar filtros
Borrar filtros

Problem in plotting a summation

1 visualización (últimos 30 días)
Henry
Henry el 9 de Sept. de 2014
Editada: Evan el 9 de Sept. de 2014
Hello everybody.
I'm having a serious problem in plotting a summation. My problem is the following: my function is (e^x)/x that is a multiplicative factor, outside the series, who multiplies the following series:
Sum for k = 1 to N of (k!)/(x^k)
I tried with
plot(plot::Sum(factorial(k)/2^k, k = 1..10)),
but the result is:
plot(plot::Sum(factorial(k)/2^k, k = 1..10)), plot(plot::Sum(factorial(k)/2^k, k = 1..10)), | Error: Unexpected MATLAB operator.
I don't understand what's the problem. I found this on your site but it doesn't work. Clearly, I wrote only the series without the multiplicative factor, to have an idea, but .. I don't know!!
Thanks to anyone will answer me!
  1 comentario
Joseph Cheng
Joseph Cheng el 9 de Sept. de 2014
Editada: Joseph Cheng el 9 de Sept. de 2014
well plot(plot::Sum(factorial(k)/2^k, k = 1..10)) isn't in matlab syntax for starters.
**edit/update: this is with Mupad notation, not the first thing i think of when looking at matlab code.
which would be
plot(plot::Sum(k!/2^k, k = 1..10))
if you're looking to plot in MuPad.

Iniciar sesión para comentar.

Respuestas (1)

Evan
Evan el 9 de Sept. de 2014
Editada: Evan el 9 de Sept. de 2014
Try out the cumsum function. Also it's worth noting that all the functions/operators you need (factorial, ./, .^, etc.) can all handle arrays, meaning you don't really need to worry about looping. You can create a single array that is each term of your cumulatively summed series using the factorial function and the element-by-element versions of the division and power operators, then plot that.
EDIT It looks like you're using MuPAD for this. My above explanation is for solving your problem using the standard MATLAB language.

Categorías

Más información sobre Get Started with MuPAD en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by