Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1556 |
|
Package | utility | |
Module | fitting | |
Tool | functionfitter |
width | in | Width of running median filter | |
Allowed: | Positive integer | ||
Default: | 5 points | ||
clip | in | The clipping amount | |
Allowed: | Positive numeric value | ||
Default: | 5 | ||
progress | in | See reports on median filter computation every progress points | |
Allowed: | Positive integer | ||
Default: | No reports |
This function generates a median clipped mask from a data array. See function datafilter.medianclip for details of the algorithm. The internal data mask is updated with this new mask.
- include 'functionfitter.g' - ff := functionfitter() - x := 1:10 - y := 3 + 2*x - ff.setdata (x,y) - ff.medianclip(width=10, clip=5)