PDL::Filter::Linear - linear filtering for PDL


PDL documentation  | view source Contained in the PDL distribution.

Index


NAME

Top

PDL::Filter::Linear - linear filtering for PDL

SYNOPSIS

Top

	$a = new PDL::Filter::Linear(
		{Weights => $v,
		 Point => 10});

	$b = new PDL::Filter::Gaussian(15,2); # 15 points, 2 std devn.

	($pred,$corrslic) = $a->predict($dat);

DESCRIPTION

Top

A wrapper for generic linear filters. Just for convenience. This should in the future use DataPresenter.

Also, this class should at some point learn to do FFT whenever it is useful.


PDL documentation  | view source Contained in the PDL distribution.