rust-poly 0.1.9

Numeric manipulation of real and complex polynomials.
Documentation
# rust-poly
Numeric manipulation of real and complex polynomials.

> Note: this crate is still in development and might change in the future.

Basic Goals:
- [x] addition, subtraction and multiplication of complex and real univariate polynomials
- [x] long division of complex and real univariate polynomials
- [x] finding complex roots of polynomials
- [x] generate chebyshev polynomials
- [ ] indexing, slicing and iterating
- [ ] into traits

Future Goals:
- [ ] Serde integration
- [ ] Random integration
- [ ] Real polynomial type
- [ ] Rational functions

## Licensing

This library is covered by the MIT license, see [LICENSE](LICENSE).

Parts of the source code are based on the [NumPy](https://github.com/numpy/numpy) library for Python, used in accordance to the original license, see [licenses/numpy/LICENSE.txt](licenses/numpy/LICENSE.txt).