php-ml/docs
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
..
assets add php-ml logo 2016-07-17 00:31:47 +02:00
machine-learning Apply comments / coding styles 2016-09-02 00:26:01 +02:00
math Add new class Set for simple Set-theoretical operations 2016-09-10 13:24:43 +02:00
index.md Add docs for neural network 2016-08-14 19:14:56 +02:00