1Linear(3) User Contributed Perl Documentation Linear(3)
2
3
4
6 PDL::Filter::Linear - linear filtering for PDL
7
9 $x = PDL::Filter::Linear->new(
10 {Weights => $v,
11 Point => 10});
12
13 $y = PDL::Filter::Gaussian->new(15,2); # 15 points, 2 std devn.
14
15 ($pred,$corrslic) = $x->predict($dat);
16
18 A wrapper for generic linear filters. Just for convenience. This
19 should in the future use DataPresenter.
20
21 Also, this class should at some point learn to do FFT whenever it is
22 useful.
23
24
25
26perl v5.38.0 2023-07-21 Linear(3)