Skip to content

Commit

Permalink
Add license-file and crate version
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisWellmann committed Aug 10, 2023
1 parent abee480 commit e14eab1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ description = "The perfect smoother: A discrete-time version of spline smoothing
keywords = ["smoothing", "signal-processing"]
categories = ["algorithms", "mathematics", "science"]
exclude = ["/papers"]
license-file = "LICENSE"

[dependencies]
nalgebra = "0.32"
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ The savitzky-golay filter does have a nice flat passband,
but suffers from unsatisfactory high-frequency noise, which is not sufficiently suppressed.
This is a particular problem when the derivative of the data is of importance.

### Usage
To use this smoother in you project, add this to your `Cargo.toml`:
```toml
[dependencies]
whittaker_smoother = "0.1"
```

### Further Reading:
See the [papers](./papers/) folder for two papers showing additional details of the method.

Expand Down

0 comments on commit e14eab1

Please sign in to comment.