Post Reply 
recall a function
02-19-2015, 05:02 PM
Post: #4
RE: recall a function
Any symbolic manipulation is going to require the CAS, with exception for a few commands. To get around this, you could try:

Code:
EXPORT gamma_cdf(k,t,n)
BEGIN
local f:= int((X^(k-1)*e^(-X/t))/(t^k*Gamma(k)), X, 0, n);
return f;
END ;

Sometimes it is possible to also quote an expression (e.g. 'X' vs X) although in HPPPL, quoted objects are still (generally) evaluated.

Graph 3D | QPI | SolveSys
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
recall a function - salvomic - 02-19-2015, 03:07 PM
RE: recall a function - bobkrohn - 02-19-2015, 03:32 PM
RE: recall a function - salvomic - 02-19-2015, 03:39 PM
RE: recall a function - Han - 02-19-2015 05:02 PM
RE: recall a function - salvomic - 02-19-2015, 05:12 PM



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