forked from ianbarber/php-lapack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml
76 lines (72 loc) · 2.73 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.9.0" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
http://pear.php.net/dtd/tasks-1.0.xsd
http://pear.php.net/dtd/package-2.0
http://pear.php.net/dtd/package-2.0.xsd">
<name>lapack</name>
<channel>pecl.php.net</channel>
<summary>Wrapper for the LAPACK linear algebra library.</summary>
<description>LAPACK (http://www.netlib.org/lapack) is written in Fortran 90 and provides routines for solving systems of simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue problems, and singular value problems. This PHP extension makes use of the LAPACKE C bindings to LAPACK, and provides access to some of the 'driver' methods, allowing straightforward solving of linear algebra problems from PHP.
</description>
<lead>
<name>Ian Barber</name>
<user>ianb</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2012-02-14</date>
<time>08:30:00</time>
<version>
<release>0.1.0</release>
<api>0.1.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- Added linear least square, eigenvalues, and singular values functions
- Added eigenvalues function
- Added linear equation functions
- Added inverse and identity functions
- Added eigenvector retrieval on eigenvalue functions
</notes>
<contents>
<dir name="/">
<!-- Support files -->
<file name="config.m4" role="src" />
<!-- Headers -->
<file name="php_lapack.h" role="src" />
<file name="php_lapack_internal.h" role="src" />
<!-- Source files -->
<file name="lapack.c" role="src" />
<!-- Misc files -->
<file name="README.md" role="doc" />
<file name="CREDITS" role="doc" />
<file name="LICENSE" role="doc" />
<!-- Tests -->
<dir name="tests">
<file name="001_leastsquares.phpt" role="test" />
<file name="002_leastsquaressvd.phpt" role="test" />
<file name="003_svd.phpt" role="test" />
<file name="004_eigenvectors.phpt" role="test" />
<file name="005_lineareqs.phpt" role="test" />
<file name="006_identity.phpt" role="test" />
<file name="007_pseudoinverse.phpt" role="test" />
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.3.0</min>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>lapack</providesextension>
<extsrcrelease />
</package>