Post Reply 
How to plot a summation?
09-25-2015, 05:25 PM
Post: #2
RE: How to plot a summation?
That's because the sum function is a cas function and plotting is an operation using home. One way to do it is to make a cas function like:

#cas
sumcas(x):=
BEGIN
return sum(n,n,0,x);
END;
#end

That should work in home and cas; then plot F1(X):=sumcas(X).

-road
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
How to plot a summation? - RodrigoPontes - 09-25-2015, 12:46 PM
RE: How to plot a summation? - roadrunner - 09-25-2015 05:25 PM
RE: How to plot a summation? - roadrunner - 09-25-2015, 07:29 PM
RE: How to plot a summation? - Tim Wessman - 09-25-2015, 09:25 PM



User(s) browsing this thread: 1 Guest(s)