php-ml/tests/Phpml/Math
Patrick Florek fa87eca375 Add new class Set for simple Set-theoretical operations
### Features

* Works only with primitive types int, float, string
* Implements set theortic operations union, intersection, complement
* Modifies set by adding, removing elements
* Implements \IteratorAggregate for use in loops

### Implementation details

Based on array functions:
* array_diff,
* array_merge,
* array_intersection,
* array_unique,
* array_values,
* sort.

### Drawbacks

* **Do not work with objects.**
* Power set and Cartesian product returning array of Set
2016-09-10 13:24:43 +02:00
..
Distance extract Math namespace 2016-04-20 23:56:33 +02:00
Kernel linear regression is also hard 2016-04-25 22:55:34 +02:00
Statistic implement Median and MostFrequent strategy for imputer 2016-05-08 19:33:39 +02:00
MatrixTest.php add tests for matrix class 2016-04-30 23:21:32 +02:00
ProductTest.php implement activation function for neural network 2016-08-02 13:07:47 +02:00
SetTest.php Add new class Set for simple Set-theoretical operations 2016-09-10 13:24:43 +02:00