webd / 聚合
聚合函数
0.0.2
2018-08-02 08:47 UTC
Requires (Dev)
- phpunit/phpunit: ^7.2
This package is auto-updated.
Last update: 2024-09-19 21:55:11 UTC
README
PHP 实现的聚合运算符
目前可用
- 加权有序加权聚合(WOWA)
即将推出
- 有序加权平均(OWA)
- Choquet 积分
安装
composer require webd/aggregation
用法
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);