10.11.2015 Views

maXbox3 3.9.9.195 14/05/2015 08:37:17 AM

maXbox3 3.9.9.80 13.11.2013 11:25:53

maXbox3 3.9.9.80 13.11.2013 11:25:53

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

<strong>maXbox3</strong> <strong>3.9.9.195</strong><br />

<strong>14</strong>/<strong>05</strong>/<strong>2015</strong> <strong>08</strong>:<strong>37</strong>:<strong>17</strong> <strong>AM</strong><br />

9255: ------------------------------------------------------------------ }<br />

9256: function Binomial(N, K : Integer) : Float; external 'dmath';<br />

9257: { Binomial coefficient C(N,K) }<br />

9258: function PBinom(N : Integer; P : Float; K : Integer) : Float; external 'dmath';<br />

9259: { Probability of binomial distribution }<br />

9260: function FBinom(N : Integer; P : Float; K : Integer) : Float; external 'dmath';<br />

9261: { Cumulative probability for binomial distrib. }<br />

9262: { ------------------------------------------------------------------<br />

9263: Poisson distribution<br />

9264: ------------------------------------------------------------------ }<br />

9265: function PPoisson(Mu : Float; K : Integer) : Float; external 'dmath';<br />

9266: { Probability of Poisson distribution }<br />

9267: function FPoisson(Mu : Float; K : Integer) : Float; external 'dmath';<br />

9268: { Cumulative probability for Poisson distrib. }<br />

9269: { ------------------------------------------------------------------<br />

9270: Exponential distribution<br />

9271: ------------------------------------------------------------------ }<br />

9272: function DExpo(A, X : Float) : Float; external 'dmath';<br />

9273: { Density of exponential distribution with parameter A }<br />

9274: function FExpo(A, X : Float) : Float; external 'dmath';<br />

9275: { Cumulative probability function for exponential dist. with parameter A }<br />

9276: { ------------------------------------------------------------------<br />

9277: Standard normal distribution<br />

9278: ------------------------------------------------------------------ }<br />

9279: function DNorm(X : Float) : Float; external 'dmath';<br />

9280: { Density of standard normal distribution }<br />

9281: function FNorm(X : Float) : Float; external 'dmath';<br />

9282: { Cumulative probability for standard normal distrib. }<br />

9283: function PNorm(X : Float) : Float; external 'dmath';<br />

9284: { Prob(|U| > X) for standard normal distrib. }<br />

9285: function InvNorm(P : Float) : Float; external 'dmath';<br />

9286: { Inverse of standard normal distribution }<br />

9287: { ------------------------------------------------------------------<br />

9288: Student's distribution<br />

9289: ------------------------------------------------------------------ }<br />

9290: function DStudent(Nu : Integer; X : Float) : Float; external 'dmath';<br />

9291: { Density of Student distribution with Nu d.o.f. }<br />

9292: function FStudent(Nu : Integer; X : Float) : Float; external 'dmath';<br />

9293: { Cumulative probability for Student distrib. with Nu d.o.f. }<br />

9294: function PStudent(Nu : Integer; X : Float) : Float; external 'dmath';<br />

9295: { Prob(|t| > X) for Student distrib. with Nu d.o.f. }<br />

9296: function InvStudent(Nu : Integer; P : Float) : Float; external 'dmath';<br />

9297: { Inverse of Student's t-distribution function }<br />

9298: { ------------------------------------------------------------------<br />

9299: Khi-2 distribution<br />

9300: ------------------------------------------------------------------ }<br />

9301: function DKhi2(Nu : Integer; X : Float) : Float; external 'dmath';<br />

9302: { Density of Khi-2 distribution with Nu d.o.f. }<br />

9303: function FKhi2(Nu : Integer; X : Float) : Float; external 'dmath';<br />

9304: { Cumulative prob. for Khi-2 distrib. with Nu d.o.f. }<br />

93<strong>05</strong>: function PKhi2(Nu : Integer; X : Float) : Float; external 'dmath';<br />

9306: { Prob(Khi2 > X) for Khi-2 distrib. with Nu d.o.f. }<br />

9307: function InvKhi2(Nu : Integer; P : Float) : Float; external 'dmath';<br />

93<strong>08</strong>: { Inverse of Khi-2 distribution function }<br />

9309: { ------------------------------------------------------------------<br />

9310: Fisher-Snedecor distribution<br />

9311: ------------------------------------------------------------------ }<br />

9312: function DSnedecor(Nu1, Nu2 : Integer; X : Float) : Float; external 'dmath';<br />

9313: { Density of Fisher-Snedecor distribution with Nu1 and Nu2 d.o.f. }<br />

93<strong>14</strong>: function FSnedecor(Nu1, Nu2 : Integer; X : Float) : Float; external 'dmath';<br />

9315: { Cumulative prob. for Fisher-Snedecor distrib. with Nu1 and Nu2 d.o.f. }<br />

9316: function PSnedecor(Nu1, Nu2 : Integer; X : Float) : Float; external 'dmath';<br />

93<strong>17</strong>: { Prob(F > X) for Fisher-Snedecor distrib. with Nu1 and Nu2 d.o.f. }<br />

9318: function InvSnedecor(Nu1, Nu2 : Integer; P : Float) : Float; external 'dmath';<br />

9319: { Inverse of Snedecor's F-distribution function }<br />

9320: { ------------------------------------------------------------------<br />

9321: Beta distribution<br />

9322: ------------------------------------------------------------------ }<br />

9323: function DBeta(A, B, X : Float) : Float; external 'dmath';<br />

9324: { Density of Beta distribution with parameters A and B }<br />

9325: function FBeta(A, B, X : Float) : Float; external 'dmath';<br />

9326: { Cumulative probability for Beta distrib. with param. A and B }<br />

9327: { ------------------------------------------------------------------<br />

9328: Gamma distribution<br />

9329: ------------------------------------------------------------------ }<br />

9330: function DGamma(A, B, X : Float) : Float; external 'dmath';<br />

9331: { Density of Gamma distribution with parameters A and B }<br />

9332: function FGamma(A, B, X : Float) : Float; external 'dmath';<br />

9333: { Cumulative probability for Gamma distrib. with param. A and B }<br />

9334: { ------------------------------------------------------------------<br />

9335: Expression evaluation<br />

9336: ------------------------------------------------------------------ }<br />

93<strong>37</strong>: function InitEval : Integer; external 'dmath';<br />

9338: { Initializes built-in functions and returns their number }<br />

9339: function Eval(ExpressionString : String) : Float; external 'dmath';<br />

9340: { Evaluates an expression at run-time }<br />

9341: procedure SetVariable(VarName : Char; Value : Float); external 'dmath';<br />

9342: { Assigns a value to a variable }<br />

9343: procedure SetFunction(FuncName : String; Wrapper : TWrapper); external 'dmath';<br />

PC<strong>08</strong> E:\maxbox3\mXGit39988\maxbox3\docs\maxbox_extract_funclist399.txt<br />

http://www.softwareschule.ch/maxbox.htm T: 297<br />

p: 1<strong>08</strong>

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!