1 | command FFT <trc-list> <lo-time> <hi-time> <k> [<m>] |
---|
2 | =========== |
---|
3 | |
---|
4 | key: FFT power spectrum |
---|
5 | |
---|
6 | Computes power spectrum of input traces (given by <trc-list>) |
---|
7 | using the FFT. For the computation only the time window |
---|
8 | between <lo-time> and <hi-time> on the input traces is used. |
---|
9 | <k> specifies the number of partitions on the input traces. |
---|
10 | The resulting power spectrum is the sum of the power spectra |
---|
11 | of the separate partitions. <m> is the length of a partition |
---|
12 | in samples. <m> must be a power of 2. If not specified it |
---|
13 | is determined automatically as large as possible. |
---|
14 | |
---|
15 | parameters |
---|
16 | |
---|
17 | <trc-list> --- parameter type: trace list |
---|
18 | List of traces to compute power spectum. |
---|
19 | |
---|
20 | <lo-time>, <hi-time> --- parameter type: real |
---|
21 | Time window on input traces (sec.). If not entered the |
---|
22 | current display window is used. |
---|
23 | |
---|
24 | <k> --- parameter type: integer |
---|
25 | Number of partintions on each trace |
---|
26 | |
---|
27 | <m> --- parameter type: integer |
---|
28 | Length of each partition in samples. Must be a power of 2. |
---|
29 | If not entered it is determined automatically as large as possible. |
---|
30 | |
---|
31 | |
---|
32 | qualifiers |
---|
33 | |
---|
34 | /OVERLAP |
---|
35 | If specified the partitions overlap by 50%. |
---|
36 | |
---|
37 | |
---|
38 | Examples: |
---|
39 | |
---|
40 | FFT/OVERLAP 1-3 0. 50. 3 |
---|
41 | ! computes power spectrum of traces 1-3 within a time window |
---|
42 | ! from 0. to 50. sec. Number of partitions is three. The |
---|
43 | ! partitions are overlapping. <m> is determined automatically. |
---|
44 | |
---|
45 | FFT 1;;;3 512 |
---|
46 | ! computes power spectrum of trace 1 within the current display |
---|
47 | ! window. |
---|
48 | |
---|