webd / aggregation
Aggregation functions
Installs: 1 876
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Requires (Dev)
- phpunit/phpunit: ^7.2
This package is auto-updated.
Last update: 2024-11-19 22:24:58 UTC
README
PHP implementation of aggregation operators
Currently available:
- Weigted Ordered Weighted Aggregation (WOWA)
To come:
- Ordered Weigted Average (OWA)
- Choquet's integral
Installation
composer require webd/aggregation
Usage
require "vendor/autoload.php"; use Aggregation\WOWA; $w = array(0.1, 0.2, 0.3, 0.4, 0.0); $p = array(0.1, 0.2, 0.3, 0.4, 0.0); $values = array(0.4, 0.2, 0.3, 0.1, 0.0); echo WOWA::wowa($w, $p, $values);