PHPackages                             suryapradana/alephp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. suryapradana/alephp

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

suryapradana/alephp
===================

A PHP Library To Solve Elementary Linear Algebra Problems

0.1.0(9y ago)4121MITPHP

Since Feb 15Pushed 8y agoCompare

[ Source](https://github.com/suryapradana/ALEphp)[ Packagist](https://packagist.org/packages/suryapradana/alephp)[ RSS](/packages/suryapradana-alephp/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (2)Used By (0)

ALEphp
======

[](#alephp)

Easily To Solve Elementary Linear Algebra Problems Between Addition, Subtraction, Multiplication, Adjoin, Eigen, Invers, Scalar, System of linear equations, Transpose, Vector of Matrix

---

Features
--------

[](#features)

- Available Elementary Linear Algebra Calculation:
    - Addition
    - Subtraction
    - Multiplication
    - Adjoin
    - Eigen
    - Invers
    - Scalar
    - System of linear equations
    - Transpose
    - Vector

---

Installation
------------

[](#installation)

```
composer require suryapradana/alephp
```

---

Usage
-----

[](#usage)

##### Addition

[](#addition)

```
use ALE\ALE;

require_once('../../src/ALE/ALE.php');

$additional = new ALE('Addition');
$additional->process->setRowColumn(3, 3);

$additional->process->setDataFirst([
                                      [1, 2, 5],
                                      [3, 4, 6],
                                      [8, 9, 2]
                                    ]);

$additional->process->setDataSecond([
                                      [5, 6, 4],
                                      [7, 3, 6],
                                      [4, 6, 2]
                                    ]);

foreach ($additional->process->setALE() as $value) {
    echo implode(' ', $value);
    echo '';
}
```

##### Vector

[](#vector)

```
use ALE\ALE;

require_once('../../src/ALE/ALE.php');

$vector = new ALE('Vector');

$vector->process->setVectorType('Projection');

$vector->process->setDataNonMatrixA(1,2,3);

$vector->process->setDataNonMatrixB(4,3,2);

foreach ($vector->process->setALE() as $values) {
    echo $values.' ';
}
```

##### Eigen

[](#eigen)

```
use ALE\ALE;

require_once('../../src/ALE/ALE.php');

$eigen = new ALE('Eigen');

$eigen->process->setDataFirst([
                                [3, 4],
                                [5, 2]
                              ]);

$eigen->process->setALE();
```

---

License
-------

[](#license)

ALEphp is released under the MIT Licence. See the bundled LICENSE file for details.

###  Health Score

25

—

LowBetter than 36% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3422d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/25540750?v=4)[Kadek Surya Pradana (Dek Yun)](/maintainers/suryapradana)[@suryapradana](https://github.com/suryapradana)

---

Top Contributors

[![suryapradana](https://avatars.githubusercontent.com/u/25540750?v=4)](https://github.com/suryapradana "suryapradana (9 commits)")

### Embed Badge

![Health badge](/badges/suryapradana-alephp/health.svg)

```
[![Health](https://phpackages.com/badges/suryapradana-alephp/health.svg)](https://phpackages.com/packages/suryapradana-alephp)
```

###  Alternatives

[cloudcake/nova-snowball

A beautiful contrast of dark blue and white packaged for Laravel Nova as a theme.

3844.6k](/packages/cloudcake-nova-snowball)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
