Re: [PHP-DEV] Statistical analysis extension

2003-01-05 Thread Andrey Hristov
 Hi
GSL(GNU Scientific Library) has a part about statistics. It has 27
functions.
I think not to copy the names of all functions.
At the moment or better - my current effort to wrap this library. However it
is
GPLed and I haven't received an (dis)approval from the authors. You make
take a look at this library. I am going to see what netlib can provide :)

Regards,
Andrey

- Original Message -
From: Nyk Cowham [EMAIL PROTECTED]
To: George Schlossnagle [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Sunday, January 05, 2003 7:13 AM
Subject: Re: [PHP-DEV] Statistical analysis extension


 On Saturday, January 4, 2003, at 10:38 PM, George Schlossnagle wrote:

  Have you looked on netlib?
 
  http://www.netlib.org/

 Both netlib and statlib are excellent resources for algorithms. My
 concern with regard to adding stat functions to PHP is that it
 shouldn't require users installing more than one 3rd part dependent
 library. There are many specialized libraries from which I can 'borrow'
 source code, but they would have to be managed and compiled into a
 single library to be a workable solution for PHP developers.

 Thanks for the link.

 Is anyone else working on an similar extension? If so it would make
 sense for me to collaborate.

 Nyk

  I am now thinking perhaps the best way to go is to implement the C
  library of statistical recipes that I need in a library that would be
  compatible with the PHP license. Anyone know of an existing lib that
  is already available? Ideally this library should have an object
  oriented interface that would make it very intuitive for PHP
  developers to use.
 
 
  --
  PHP Development Mailing List http://www.php.net/
  To unsubscribe, visit: http://www.php.net/unsub.php
 


 --
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] Statistical analysis extension

2003-01-05 Thread Andrey Hristov
 I hope that this is delay because of the holidays.
I will try again in few days. And if then I have no answer I will
discontinue my efforts

Thanks for the reply.

Andrey


- Original Message -
From: Andi Gutmans [EMAIL PROTECTED]
To: Andrey Hristov [EMAIL PROTECTED]; George Schlossnagle
[EMAIL PROTECTED]; Nyk Cowham [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Sunday, January 05, 2003 11:25 AM
Subject: Re: [PHP-DEV] Statistical analysis extension


 If you haven't received any approval you should assume that it's
disapproval.

 Andi

 At 10:16 AM 1/5/2003 +0200, Andrey Hristov wrote:
   Hi
 GSL(GNU Scientific Library) has a part about statistics. It has 27
 functions.
 I think not to copy the names of all functions.
 At the moment or better - my current effort to wrap this library. However
it
 is
 GPLed and I haven't received an (dis)approval from the authors. You make
 take a look at this library. I am going to see what netlib can provide :)
 
 Regards,
 Andrey
 
 - Original Message -
 From: Nyk Cowham [EMAIL PROTECTED]
 To: George Schlossnagle [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Sunday, January 05, 2003 7:13 AM
 Subject: Re: [PHP-DEV] Statistical analysis extension
 
 
   On Saturday, January 4, 2003, at 10:38 PM, George Schlossnagle wrote:
  
Have you looked on netlib?
   
http://www.netlib.org/
  
   Both netlib and statlib are excellent resources for algorithms. My
   concern with regard to adding stat functions to PHP is that it
   shouldn't require users installing more than one 3rd part dependent
   library. There are many specialized libraries from which I can
'borrow'
   source code, but they would have to be managed and compiled into a
   single library to be a workable solution for PHP developers.
  
   Thanks for the link.
  
   Is anyone else working on an similar extension? If so it would make
   sense for me to collaborate.
  
   Nyk
  
I am now thinking perhaps the best way to go is to implement the C
library of statistical recipes that I need in a library that would
be
compatible with the PHP license. Anyone know of an existing lib
that
is already available? Ideally this library should have an object
oriented interface that would make it very intuitive for PHP
developers to use.
   
   
--
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php
   
  
  
   --
   PHP Development Mailing List http://www.php.net/
   To unsubscribe, visit: http://www.php.net/unsub.php
  
 
 
 --
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, visit: http://www.php.net/unsub.php


 --
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] Statistical analysis extension

2003-01-05 Thread Nyk Cowham
Hi Andrey,

I have already built some wrappers around just the gsl_stats_* 
functions in GSL during my first cut at adding some stats 
functionality. Unfortunately GSL doesn't have any ANOVA functions or 
too many nonparametric tests (look to MacANOVA for that I guess).

Please let me know what response you get back from the GSL developers 
if any.

Nyk

On Sunday, January 5, 2003, at 03:16 AM, Andrey Hristov wrote:

 Hi
GSL(GNU Scientific Library) has a part about statistics. It has 27
functions.
I think not to copy the names of all functions.
At the moment or better - my current effort to wrap this library. 
However it
is
GPLed and I haven't received an (dis)approval from the authors. You 
make
take a look at this library. I am going to see what netlib can provide 
:)

Regards,
Andrey

- Original Message -
From: Nyk Cowham [EMAIL PROTECTED]
To: George Schlossnagle [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Sunday, January 05, 2003 7:13 AM
Subject: Re: [PHP-DEV] Statistical analysis extension


On Saturday, January 4, 2003, at 10:38 PM, George Schlossnagle wrote:


Have you looked on netlib?

http://www.netlib.org/


Both netlib and statlib are excellent resources for algorithms. My
concern with regard to adding stat functions to PHP is that it
shouldn't require users installing more than one 3rd part dependent
library. There are many specialized libraries from which I can 
'borrow'
source code, but they would have to be managed and compiled into a
single library to be a workable solution for PHP developers.

Thanks for the link.

Is anyone else working on an similar extension? If so it would make
sense for me to collaborate.

Nyk

I am now thinking perhaps the best way to go is to implement the C
library of statistical recipes that I need in a library that would 
be
compatible with the PHP license. Anyone know of an existing lib that
is already available? Ideally this library should have an object
oriented interface that would make it very intuitive for PHP
developers to use.


--
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-DEV] Statistical analysis extension

2003-01-04 Thread Nyk Cowham
Some advice would be appreciated:

I need much better support for statistical analysis (central tendency, 
variance, kurtosis etc.) and financial formulae (NPV etc.) in my PHP 
applications. I have been using some calculation classes implemented in 
PHP, but I am at a point where I need the speed of C. I started writing 
an extension using the stat functions from GSL, but I see that the GNU 
license is not compatible with the PHP license, plus I am only using a 
tiny portion of that library.

I am now thinking perhaps the best way to go is to implement the C 
library of statistical recipes that I need in a library that would be 
compatible with the PHP license. Anyone know of an existing lib that is 
already available? Ideally this library should have an object oriented 
interface that would make it very intuitive for PHP developers to use.

It seems as though all extensions in ext/ are going to be moved under 
PECL so I am guessing that is where I should be targeting this library 
for release. Is that a good assumption to make?

Thanks for your help.

Nyk Cowham


--
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Statistical analysis extension

2003-01-04 Thread George Schlossnagle
Have you looked on netlib?

http://www.netlib.org/



I am now thinking perhaps the best way to go is to implement the C 
library of statistical recipes that I need in a library that would be 
compatible with the PHP license. Anyone know of an existing lib that 
is already available? Ideally this library should have an object 
oriented interface that would make it very intuitive for PHP 
developers to use.


--
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] Statistical analysis extension

2003-01-04 Thread Nyk Cowham
On Saturday, January 4, 2003, at 10:38 PM, George Schlossnagle wrote:


Have you looked on netlib?

http://www.netlib.org/


Both netlib and statlib are excellent resources for algorithms. My 
concern with regard to adding stat functions to PHP is that it 
shouldn't require users installing more than one 3rd part dependent 
library. There are many specialized libraries from which I can 'borrow' 
source code, but they would have to be managed and compiled into a 
single library to be a workable solution for PHP developers.

Thanks for the link.

Is anyone else working on an similar extension? If so it would make 
sense for me to collaborate.

Nyk

I am now thinking perhaps the best way to go is to implement the C 
library of statistical recipes that I need in a library that would be 
compatible with the PHP license. Anyone know of an existing lib that 
is already available? Ideally this library should have an object 
oriented interface that would make it very intuitive for PHP 
developers to use.


--
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php