comparison m-toolbox/html_help/help/ug/sigproc_applyfilt_content.html @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 <!-- $Id: class_desc_filterbank_content.html,v 1.1 2009/08/20 12:51:36 ingo Exp $ -->
2
3 <!-- ================================================== -->
4 <!-- BEGIN CONTENT FILE -->
5 <!-- ================================================== -->
6 <!-- ===== link box: Begin ===== -->
7 <p>
8 <table border="1" width="80%">
9 <tr>
10 <td>
11 <table border="0" cellpadding="5" class="categorylist" width="100%">
12 <colgroup>
13 <col width="37%"/>
14 <col width="63%"/>
15 </colgroup>
16 <tbody>
17 <tr valign="top">
18 <td>
19 <a href="#Applyfiltdesc">Description</a>
20 </td>
21 <td>Digital filtering with LTPDA filters objects.</td>
22 </tr>
23 <tr valign="top">
24 <td>
25 <a href="#Applyfiltexample">Examples</a>
26 </td>
27 <td>How to filter a data series in LTPDA.</td>
28 </tr>
29 </tbody>
30 </table>
31 </td>
32 </tr>
33 </table>
34 </p>
35 <!-- ===== link box: End ====== -->
36
37
38
39 <!-- ===== filtering in LTPDA description ===== -->
40 <h2><a name="Applyfiltdesc">Description</a></h2>
41 <p>
42 Digital filtering in LTPDA can be performed by a call to the <tt>ao/filter</tt> method.
43 <tt>ao/filter</tt> method is a wrapper of the standard MATLAB filter method.
44 Details of the core algorithm can be found in the proper
45 <a href="matlab:doc('filter')">documentation page</a>.
46 </p>
47
48
49 <!-- ===== Examples ===== -->
50
51 <h2><a name="Applyfiltexample">Examples</a></h2>
52 <p>
53 Given an input analysis object (can be a time series or a frequency series object)
54 <tt>a_in</tt>, digital filtering operation can be easily performed:
55 </p>
56
57 <div class="fragment"><pre>
58
59 a_out = filter(a_in,fobj)
60
61 </pre></div>
62
63 <p>
64 Where <tt>fobj</tt> is a filter. It can be a <a href="sigproc_iir.html">MIIR</a>,
65 a <a href="sigproc_fir.html">MFIR</a>
66 or a <a href="sigproc_filterbanks.html">FILTERBANK</a> object.
67 </p>
68 <p>
69 The filter object <tt>fobj</tt> can be also embedded in a plist
70 </p>
71
72 <div class="fragment"><pre>
73
74 pl = plist(<span class="string">'filter'</span>, fobj);
75 a_out = filter(a_in,pl)
76
77 </pre></div>
78
79