Sponsored Content
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News On the Frequency-Domain Properties of Savitzky-Golay Filters Post 302451803 by Linux Bot on Wednesday 8th of September 2010 05:30:01 AM
Old 09-08-2010
On the Frequency-Domain Properties of Savitzky-Golay Filters

HPL-2010-109 On the Frequency-Domain Properties of Savitzky-Golay Filters - Schafer, Ronald W.
Keyword(s): Savitzky-Golay filter, least-squares polynomial approximation, smoothing
Abstract: This paper is concerned with the frequency-domain properties of the so called Savitzky-Golay lowpass filters, which are based on the principle of local least-squares fitting of a polynomial. A summary of the important frequency-domain properties is given along with an empirically-derived formula for ...
Full Report

More...
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

IP Filters

Anyone know where I can find good documentation for IPF on the Internet? Thanks, Chuck (1 Reply)
Discussion started by: 98_1LE
1 Replies

2. UNIX for Dummies Questions & Answers

How can I use filters to extract infos?

I encountered some complicated problems course studies. take this for example: under /home/data/stockdata we have 1999,2000,2001,.......2004 these sub-dirs and, each sub-dir has its mothly(for Jan~Dec) transaction records, i.e. they are all named "foo.txt", like this: Date ... (2 Replies)
Discussion started by: virii
2 Replies

3. UNIX for Dummies Questions & Answers

filters

how to filter one particular row from one text file and copy it in another? (1 Reply)
Discussion started by: rajanandhini
1 Replies

4. Windows & DOS: Issues & Discussions

How to: Linux BOX in Windows Domain (w/out joining the domain)

Dear Expert, i have linux box that is running in the windows domain, BUT did not being a member of the domain. as I am not the System Administrator so I have no control on the server in the network, such as modify dns entry , add the linux box in AD and domain record and so on that relevant. ... (2 Replies)
Discussion started by: regmaster
2 Replies

5. UNIX for Dummies Questions & Answers

Difference between filters of ps

Hi I am a newbie to Unix . I am just trying to understand the difference between various filters for ps. Can someoen pelase explain me whta is the difference between using /usr/bin/ps -ef | grep <PID> or <Process name> and /usr/bin/ps -auxwww| grep <PID> or <Process Name>. (1 Reply)
Discussion started by: sillybirdie123
1 Replies

6. UNIX for Advanced & Expert Users

Unix- filters ppt

Hello.. i want a ppt on unix filters.. can anybody gv me d link 4 that?? (1 Reply)
Discussion started by: shweta_babbar
1 Replies

7. Shell Programming and Scripting

Need help in filters

Hi, I have input data. 9214919702; B5; 1;20070216; 9231590437; BY; 1;20070215;9;20091022;12;20091022; 9211765888; AZ; 1;20080802;1;20080802;14;20091027; 9231592590; BY; 1;20070215;9;20091026;9;20091026; 9252412219; MM; 1;20070217; 9214917135; MM; 1;20070215; 9214917056; B5; 1;20070215;... (8 Replies)
Discussion started by: suresh3566
8 Replies

8. Programming

Applying filters

I have a value X, a value DX and an odd integer N (say N=9) and want to create an array such that let X = 10, DX = 2 and N = 9 DIST(1) = X - 4 * DX DIST(2) = X - 3 * DX DIST(3) = X - 2 * DX DIST(4) = X - DX DIST(5) = X DIST(6) = X + DX DIST(7) = X + 2 * DX DIST(8) = X + 3 * DX DIST(9)... (2 Replies)
Discussion started by: kristinu
2 Replies
Template::Filters(3pm)					User Contributed Perl Documentation				    Template::Filters(3pm)

NAME
Template::Filters - Post-processing filters for template blocks SYNOPSIS
use Template::Filters; $filters = Template::Filters->new(\%config); ($filter, $error) = $filters->fetch($name, @args, $context); if ($filter) { print &$filter("some text"); } else { print "Could not fetch $name filter: $error "; } DESCRIPTION
The "Template::Filters" module implements a provider for creating subroutines that implement the standard filters. Additional custom filters may be provided via the FILTERS configuration option. METHODS
new(\%params) Constructor method which instantiates and returns a reference to a "Template::Filters" object. A reference to a hash array of configuration items may be passed as a parameter. These are described below. my $filters = Template::Filters->new({ FILTERS => { ... }, }); my $template = Template->new({ LOAD_FILTERS => [ $filters ], }); A default "Template::Filters" module is created by the Template module if the LOAD_FILTERS option isn't specified. All configuration parameters are forwarded to the constructor. $template = Template->new({ FILTERS => { ... }, }); fetch($name, @args, $context) Called to request that a filter of a given name be provided. The name of the filter should be specified as the first parameter. This should be one of the standard filters or one specified in the FILTERS configuration hash. The second argument should be a reference to an array containing configuration parameters for the filter. This may be specified as 0, or undef where no parameters are provided. The third argument should be a reference to the current Template::Context object. The method returns a reference to a filter sub-routine on success. It may also return "(undef, STATUS_DECLINE)" to decline the request, to allow delegation onto other filter providers in the LOAD_FILTERS chain of responsibility. On error, "($error, STATUS_ERROR)" is returned where $error is an error message or Template::Exception object indicating the error that occurred. When the "TOLERANT" option is set, errors are automatically downgraded to a "STATUS_DECLINE" response. use_html_entities() This class method can be called to configure the "html_entity" filter to use the HTML::Entities module. An error will be raised if it is not installed on your system. use Template::Filters; Template::Filters->use_html_entities(); use_apache_util() This class method can be called to configure the "html_entity" filter to use the Apache::Util module. An error will be raised if it is not installed on your system. use Template::Filters; Template::Filters->use_apache_util(); CONFIGURATION OPTIONS
The following list summarises the configuration options that can be provided to the "Template::Filters" new() constructor. Please see Template::Manual::Config for further information about each option. FILTERS The FILTERS option can be used to specify custom filters which can then be used with the FILTER directive like any other. These are added to the standard filters which are available by default. $filters = Template::Filters->new({ FILTERS => { 'sfilt1' => &static_filter, 'dfilt1' => [ &dyanamic_filter_factory, 1 ], }, }); TOLERANT The TOLERANT flag can be set to indicate that the "Template::Filters" module should ignore any errors and instead return "STATUS_DECLINED". DEBUG The DEBUG option can be used to enable debugging messages for the Template::Filters module by setting it to include the "DEBUG_FILTERS" value. use Template::Constants qw( :debug ); my $template = Template->new({ DEBUG => DEBUG_FILTERS | DEBUG_PLUGINS, }); STANDARD FILTERS
Please see Template::Manual::Filters for a list of the filters provided with the Template Toolkit, complete with examples of use. AUTHOR
Andy Wardley <abw@wardley.org> <http://wardley.org/> COPYRIGHT
Copyright (C) 1996-2007 Andy Wardley. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Template::Manual::Filters, Template, Template::Context perl v5.14.2 2011-12-20 Template::Filters(3pm)
All times are GMT -4. The time now is 12:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy