ml-savitzky-golay-generalized
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "ml-savitzky-golay-generalized", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Savitzky–Golay filter in Javascript", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -11,8 +11,8 @@ # savitzky-golay-generalized | ||
´´´ | ||
```js | ||
var SG = require("savitzky-golay-generalized"); | ||
´´´ | ||
``` | ||
### Smoothing example | ||
´´´ | ||
```js | ||
var options = { | ||
@@ -30,7 +30,7 @@ windowSize: 15, | ||
console.log(ans); | ||
´´´ | ||
``` | ||
### First derivative test (Equally spaced x) | ||
´´´ | ||
```js | ||
var options = { | ||
@@ -49,7 +49,7 @@ windowSize: 47, | ||
´´´ | ||
``` | ||
### First derivative test x as vector(It could be non-equally spaced!!) | ||
´´ | ||
```js | ||
var options = { | ||
@@ -80,2 +80,2 @@ windowSize: 47, | ||
*/ | ||
´´´ | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11726