mathematic structures [message #171370] |
Thu, 30 December 2010 22:32 |
Philipp Kraus
Messages: 14 Registered: December 2010
Karma: 0
|
Junior Member |
|
|
Hello,
I need for a web projekt some mathematic calculations with matrix and
vector operations. Is there a library that implements the matheamtical
structurs for vector and matrix operations? I can implementate matrix
and vector classes myself, but I hope there is a complete package
Thanks
Phil
|
|
|
Re: mathematic structures [message #171394 is a reply to message #171370] |
Fri, 31 December 2010 20:14 |
Mladen Gogala
Messages: 13 Registered: December 2010
Karma: 0
|
Junior Member |
|
|
On Thu, 30 Dec 2010 23:32:34 +0100, Philipp Kraus wrote:
> I need for a web projekt some mathematic calculations with matrix and
> vector operations. Is there a library that implements the matheamtical
> structurs for vector and matrix operations? I can implementate matrix
> and vector classes myself, but I hope there is a complete package
PHP 5.3 has Standard PHP Library, which includes things like stack, heap,
doubly connected list etc. but no matrices. There are two old and
unmaintained PEAR classes, Math_Vector and Math_Matrix. Other than that,
there are few classes on www.phpclasses.org. See if any of that fits your
purpose. If not, you will have to write your own classes.
--
http://mgogala.byethost5.com
|
|
|