diff scripts/specfun/betai.m @ 2311:2b5788792cad

[project @ 1996-07-11 20:18:38 by jwe]
author jwe
date Thu, 11 Jul 1996 20:18:38 +0000
parents 5cffc4b8de57
children 204cc7db6f4a
line wrap: on
line diff
--- a/scripts/specfun/betai.m	Thu Jul 11 20:02:03 1996 +0000
+++ b/scripts/specfun/betai.m	Thu Jul 11 20:18:38 1996 +0000
@@ -17,15 +17,15 @@
 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 ### 02111-1307, USA.
 
+## usage: betai (a, b, x)
+##
+## Returns the incomplete beta function
+##   betai (a, b, x) = BETA(a,b)^(-1) INT_0^x t^(a-1) (1-t)^(b-1) dt.
+## If x has more than one component, both a and b must be scalars.
+## If x is a scalar, a and b must be of compatible dimensions.
+
 function y = betai (a, b, x)
   
-  ## usage: betai (a, b, x)
-  ##
-  ## Returns the incomplete beta function
-  ##   betai (a, b, x) = BETA(a,b)^(-1) INT_0^x t^(a-1) (1-t)^(b-1) dt.
-  ## If x has more than one component, both a and b must be scalars.
-  ## If x is a scalar, a and b must be of compatible dimensions.
-  
   ## Written by KH (Kurt.Hornik@ci.tuwien.ac.at) on Aug 2, 1994.
 
   ## Computation is based on the series expansion