├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── figure.svg ├── src └── lib.rs └── tests └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | .vscode 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanoD/polyfit-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanoD/polyfit-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanoD/polyfit-rs/HEAD/README.md -------------------------------------------------------------------------------- /figure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanoD/polyfit-rs/HEAD/figure.svg -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanoD/polyfit-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanoD/polyfit-rs/HEAD/tests/lib.rs --------------------------------------------------------------------------------