Problem in plotting a summation
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentar
Joseph Cheng
am 9 Sep. 2014
Bearbeitet: Joseph Cheng
am 9 Sep. 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.
Antworten (1)
Evan
am 9 Sep. 2014
Bearbeitet: Evan
am 9 Sep. 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.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with MuPAD finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!