Arbitrary FIR Filter Theory, Design, and Application

Size: px
Start display at page:

Download "Arbitrary FIR Filter Theory, Design, and Application"

Transcription

1 Arbitrary FIR Filter Theory, Design, and Application Oscilloscopes have incorporated the ability for the user to apply their own custom designed FIR filters to math waveforms. This paper provides an in depth discussion of the theory of FIR, finite impulse response, filters using DSP. It also describes some methods for designing these filters. In addition there is a discussion of the FIR filter library provided for use with the Tektronix arbitrary filter used in the oscilloscope math subsection. This paper deals only with FIR filter types. Section 1: Introduction In terms of signal processing, a filter may be thought of as a mathematical procedure that modifies the shape of a waveform. Thus given a waveform of any shape a filter could be designed that would transform it into any desired shape within the context of some basic rules, assumptions, and limitations. In that broad sense one might say that any system that processes a signal could be thought of as a filter. For example, an oscilloscope channel operates as a lowpass filter where its 3 db down point is referred to as its bandwidth. If AC coupling is used then the oscilloscope operates as a bandpass filter.

2 Before the advent of computers and digital sampling, engineers dealt primarily with analog filters implemented in electrical circuits. These filters used resistors, capacitors, and inductors to perform an analog computation known as a convolution. With the invention of digital computers and A/D converters the convolution process can be performed by a series of multiplications and additions on binary data samples that represent a signal. Digital filters have some significant advantages over analog filters. For example, the tolerance values of analog filter circuit components are large enough such that high order filters are difficult or impossible to implement. With digital filters such high order filters are easily realized. In addition, analog component values can change with age or temperature affecting the response of the filter. Digital filters do not have that problem. Another major advantage of digital filters is the ability to reprogram them by changing the coefficients. This greatly simplifies the implementation of adaptive filters. Generally speaking, digital filters fall into two major categories, FIR finite impulse response, and IIR infinite impulse response. The FIR filter has only zeros and no poles in its transfer function. Thus it is always stable and cannot oscillate. Therefore, the impulse response of an FIR filter has finite length. Also, the FIR filter may be specified with an exactly linear phase response. An IIR filter has both zeros and poles in its transfer function and can be unstable. Its impulse response theoretically lasts to infinity. In other words, it is implemented with a feedback loop. An IIR filter cannot obtain a true linear phase response. However, it can approximate linear phase over regions of interest. This paper will only deal with filters of type FIR. For a more in depth description of digital filter theory, see reference list on page 15. Figure 1. Basic Filter Conceptual diagram. Section 2: FIR Filter Coefficients An FIR filter consists of an array of data samples, h(m), that represent the sampled impulse response of the filter where m is the index into the array. Refer to Figure 1. It is well known that an impulse consists of cosine functions of all frequencies of equal magnitude with phase equal to zero at the time position of the impulse, i.e. each cosine wave of a different frequency has a peak at the position of the impulse. This position is referred to as the zero phase reference point. Thus, if an impulse is fed into a filter, its impulse response will fully define the characteristics of the filter in the time domain. Computing an FFT of the filter impulse response will provide the phase and magnitude response of the filter in the frequency domain. An FIR filter is obtained by specifying its coefficients. The coefficients are samples of the filters impulse response. There are numerous methods by which the impulse response may be obtained. Generally the filter characteristics are specified in the frequency domain and the impulse response is obtained by computing an IFFT. The impulse response is then sampled to obtain the filter coefficients at the desired sample rate. 2

3 Remez Exchange Method: Perhaps the most well known method for FIR filter design uses the Remez exchange algorithm. This algorithm is described in Theory and Application of Digital Signal Processing (see reference list on page 15) where a FORTRAN program listing is provided. This program allows the user to specify one of three types of linear phase FIR filters such as 1) Multiband, 2) Hilbert Transform, and 3) Differentiator. Matlab has a filter design package that uses the Remez algorithm providing a modern Windows user interface. Analog Prototype: There are also methods for transforming a known analog transfer function into a digital filter transfer function using a bilinear transform. This is needed because the representation of the complex jω axis in the analog s-plane maps onto a unit circle in the digital z-plane domain. The bilinear transform is used to pre-warp the filter transfer function when converting it from the s-plane to the z-plane to obtain an equivalent digital filter transfer function. A Direct Frequency Sampling Method Used By the Author: The Remez algorithm method and analog prototype methods described above have significant limitations in regards to controlling both the phase response and the magnitude response of the desired filter. It can be difficult to obtain a desired response with these methods. In Section 8: Arbitrary Frequency Sampling Filter Design Method, a procedure is given to create a filter with arbitrary magnitude and phase response as specified by the designer. Section 3: Convolution Once the filter has been designed and the filter coefficients have been obtained the application of the filter to the input data is performed by the process of convolution. This is described in equations (1), (2), and (3) in a form that is easily implemented in Mathcad or Matlab. (1) (2) (3) (4) (5) (6) Where M is the number of filter coefficients and must be an odd number for the indexing scheme described in equation (2). Even length filters can also be implemented but the indexing equation (2) must be modified slightly. The value of N is the length of the input data array specified by x. The filter array is h. As can be seen by equation (1), (2), and (3) the process of convolution involves reversing the time order of the impulse response of the filter, h, and multiplying it point by point with corresponding samples of x starting at index position M. The results of each multiply are added together to obtain one filtered output point into the array, y. The value of n is then incremented by one and the multiplication and summation procedure is repeated to obtain the next filtered data sample in y. Notice that as specified by equation (3) the first floor(m/2) points in the y( ) array are not defined. Also, the last floor(m/2) points at the end of the array are not defined. However, the remainder of the points in the array are filtered. With this representation the filter is fully charged and there is no transient start up distortion from the filter in the output data array. All points of the final array, y(n), described by equation (6) are valid. The oscilloscope filtered math waveform does not have extra points before or after the ends of the waveform record. Therefore, to avoid filter startup transient distortion, the undefined points from equation (3) are replaced with ETnull, not a number. These display as blank on screen. In an exported ASCII file these points appear as spaces. 3

4 Section 4: Filter Coefficients and Frequency Response With Respect to Sample Rate The frequency response of any digital filter is normalized with respect to the sample rate, f s. The filter will have its magnitude and phase response defined within the frequency range of 0 to 0.5 f s where the value of 0.5 f s is called the Nyquist point. The key filter parameters may be specified using normalized values. For example, a lowpass filter could be specified to have a normalized bandwidth of 0.3. That means that the cutoff frequency is equal to 0.3 f s. This filter will have this cutoff frequency no matter what sample rate value is chosen. For example, consider a lowpass filter that has a passband from 0 to 0.25 f s. Now assume that the filter coefficients have been determined and that they are applied to data that has some specified sample rate. Regardless of what the sample rate of the data is, the filter will exhibit the same magnitude and phase characteristics scaled to within a range of 0 to Nyquist. Thus if this filter is applied at a sample rate of 1 Hz, the bandwidth would be 0.25 Hz. If the same filter coefficients are applied to data that has a sample rate of 1 GHz, then the filter will have a bandwidth of 250 MHz. A graphic representation of this affect is shown in Figure 2. Having a set of normalized filters for general use is valuable. For example, new Tektronix oscilloscopes have such a library of filters stored in disk files. There are highpass, lowpass, bandpass, bandreject, and other types of filters in this library. Refer to Section 10: The Math Arbitrary Filter Library. Magnitude Frequency Nyquist 1 Nyquist 2 Figure 2. Example of normalized frequency response scaling with same filter coefficients but different sample rates. Having a fixed set of filter coefficients results in the time duration of the impulse response to vary with different sample rates. Thus the frequency domain characteristics such as bandwidth, will vary accordingly. The number of filter coefficients stays constant for this case. If the user requires a fixed frequency response from the filter regardless of what the sample rate is then a different set of filter coefficients is required for each sample rate. This means that the time interval covered by the impulse response will be constant. This results in fewer filter coefficients for lower sample rates and more coefficients for higher sample rates. Thus the number of filter coefficients will vary with sample rate for this case. Obviously the sample rate must be high enough such that the desired frequency response fits within the range of Nyquist. For this case the user should design the filter for the highest sample rate since 4

5 Figure 3. An example of the desired response from a band limit filter in an oscilloscope operating at base sample rate. Filter response is shown in black and scope channel response is shown in red. No aliasing occurs in this example. Figure 4. Example of an aliased Filter Response when the bandwidth limit filter sample rate is too low. Black is digital filter response and red is the analog oscilloscope channel response. The resulting filter does not provide the desired bandwidth limit function. this will require the most coefficients. Then use interpolation and decimation techniques to resample the filter coefficients for each sample rate the filter shall operate at. The various sets of coefficients may then be incorporated into a single disk file as described in Section 11: FIR Filter File Format. When operating at different sample rates in the oscilloscope, the possibility of signal and noise aliasing must be taken into consideration. In addition, the filter will turn off if a sample rate is set in the scope for which no filter coefficients have been defined for the ArbFilt( ) math function. For normalized filter files as described in Section 11, the filter would always be on regardless of what sample rate is chosen. Section 5: Aliasing and the Filter Response The issue of aliasing must be considered when using FIR filters in general. This is especially true within the math package of an oscilloscope. Any signals that have frequency greater than Nyquist that fall within the analog bandwidth of the oscilloscope will alias within the passband(s) and appear to have a lower frequency than the actual frequency. The best way to avoid aliasing in an oscilloscope is to operate at the base sample rate where the analog bandwidth is less than Nyquist. For this case the analog channel of the oscilloscope operates as an anti-alias filter. For example, a DPO7254 has a base sample rate of 10 GS/s and a channel bandwidth of 2 GHz which is less than Nyquist at 5 GHz. This works well as long as the filter bandwidth is not too small compared to the scope bandwidth where the filter would be highly over sampled. The filters are computed with floating point coefficients so they are more tolerant to over-sampling than would be the case for fixed point filters. For this condition the number of coefficients becomes much larger and so does the compute time for the filter convolution. The graph in Figure 3 shows an example of a low pass filter operating at the base sample rate of the oscilloscope. No aliasing occurs for this example. An example is shown in Figure 4 where the sample rate, fs, is lower than the base rate of the oscilloscope and the filter response is aliased. Notice that aliasing of the digital filter results in images that repeat multiple times at integer multiples of the sample rate. In this case the user intended to have a lowpass filter to remove out of band noise; but what they actually get is a lowpass filter with multiple bands of high frequency noise and/or signal aliased into the passband. 5

6 Magnitude Arbitrary FIR Filter Theory, Design, and Application PASSBAND Bandwidth 0 db -3 db Transition band Stop band Magnitude 0 db -3 db Stop band Pass band Transition band fc frequency fc frequency Figure 5. Lowpass filter parameters. Figure 6. Highpass filter parameters. Section 6: Linear Phase A system that has linear phase as a function of frequency will pass all frequencies with the same time delay. A non-linear phase system will change the phase of different components with respect to each other resulting in waveform distortion. Therefore, it is often desirable to design filters that have linear phase characteristics. However, sometimes a filter is needed that will correct the phase errors in a system so that the filtered result will have a linear phase response. This type of filter will have a non-linear phase characteristic which is complementary to the system phase response to be corrected. An example of this is the bandwidth enhancement filters used in the TDS6154C oscilloscopes. These filters are calibrated during manufacturing and result in a scope channel response that is much flatter and that has a linear phase characteristic. Section 7: Filter Parameters The following is a list of parameters and terms normally used to describe or specify the characteristics of a filter. Filter Transfer Function Name: User defined FIR, Bessel Thompson, Butterworth, Chebychev, Gaussian, etc. NOTE: The Bessel Thompson class of filters are commonly used as the analog bandwidth limit filter in oscilloscope channels. It is also used as the filter response type for optical reference receiver mask testing applications. The reason for its popularity is that it is the closest one can get to realizing an ideal Gaussian filter response which is not physically realizable. This filter type does a reasonably good job of approximating linear phase in the passband using a transfer function with both poles and zeros. NOTE: Several of the filter types listed here originated as analog filter designs incorporating poles and zeros. Therefore to realize them as FIR filters might require using pre-warping and bilinear transform techniques. Filter Type: Lowpass, highpass, bandpass, bandstop, Hilbert transform, differentiator, multiband, etc. Cutoff Frequency: Used to specify the bandwidth of highpass, lowpass, bandpass, and band reject filters. Cutoff frequency is the point at which the magnitude has rolled off to 3 db. Refer to Figures 5, 6, 7, and 8. Bandwidth: The range of frequencies in the passband of a filter. Cutoff frequencies defining the band edges are at the -3 db down point on the magnitude response curve. 6

7 Figure 7. Bandpass filter parameters. Figure 8. Bandreject filter parameters. Center frequency: Used to specify the center frequency of bandpass or band reject filters. Refer to Figures 7 and 8. Q: The Q parameter is the ratio of a filters center frequency to the bandwidth as shown in equation (8). Magnitude 0 db db Rolloff rate: The slope of the transition band is octave rolloff rate. It is commonly specified in db/octave or db/decade. f 2f frequency Figures 5 and 6 illustrate the various filter parameters and terminology. The filter cutoff frequency is represented by fc in Figures 5 and 6. For the case of the bandpass filter shown in Figure 7 fc is the center frequency of the passband. Also, f1 is the lower cutoff frequency and f2 is the upper cutoff frequency and bw is the bandwidth as defined by equation (7). The Q of the filter is defined by equation (8). (7) (8) Figure 9. Filter rolloff rate in db / octave. Filter Rolloff Rate The slope of the transition band of a filter is referred to as its rolloff rate. This is commonly specified in db per octave or in db per decade. An octave is an interval where the frequency is doubled. A decade is an interval where the frequency is multiplied by 10. The order of a filter is often associated with the rolloff rate of the filter. For example, a 1st order filter rolls off at 6 db per octave. A 2nd order filter rolls off at 12 db per octave. The rolloff rate in db/octave is equal to the filter order times six. This is only true for typical filter designs where the poles and zeros of the transfer function are positioned to give a typical monotonic slope. It is possible to specify transfer functions for which this rule does not apply. 7

8 Magnitude Magnitude Arbitrary FIR Filter Theory, Design, and Application fs/2 fs/2 fs Figure 10. Define the frequency domain magnitude response. Figure 11. Create the Magnitude portion of the complex conjugate of the data obtained in step 1. Section 8: Arbitrary Frequency Sampling Filter Design Method This section describes a design method for arbitrarily specifying both phase and magnitude response for an FIR filter in the frequency domain and then computing the time domain response. Design tools such as Mathcad or Matlab are ideal environments for implementing these procedures. Refer to Digital Signal Processing on the reference list on page 15 for a discussion of frequency sampling filter design method. The general steps are as follows: 1. Define the Magnitude response: Derive a function or other means for specifying the magnitude response of the filter in the range of 0 Hz to the Nyquist point and store in the array, X (See Figure 10). 2. Replicate this magnitude data, X, in reverse order appended to the end of the array, X. See Figure 11. Extreme care must be taken as to the position of these samples and which index to start on for the beginning and end of the copied data. The total number of points in X will be the length of the IFFT. If the IFFT has an even number of points then the Nyquist point is on one of the samples in the spectrum. If the IFFT has an odd number of points then Nyquist does not occur on a sample but rather between two samples. Failure to take this detail into account will result in errors in the final filter result with the complex part of the IFFT not being equal to zero as it should be. Note: The IFFT of X will be zero if X has a magnitude response symetrical about Nyquist as shown in Figure 11 and phase response anti-symetrical about Nyquist as shown in Figure 12. That means the data to the right of Nyquist is the complex conjugate in reverse order of the data to the left of Nyquist where the conjugate of a + jb is equal to a jb. 8

9 Figure 12. Assign a linear phase function to the data in X. Vertical axis is phase of X( f ) where f is frequency. Figure 13. Use IFFT to obtain the filter impulse response. 3. Assign Linear Phase: Use rotation of coordinate equation (9) to rotate all of the data points in X. This converts X into an array of complex numbers of the form a + jb where a is the real part and b is the imaginary part and j is the square root of -1. The equations are as follows: (9) Where N is the length of the X array and n is an index variable over the range of the array. The resulting linear phase plot would appear similar to that shown in Figure 12. The group delay is equal to the negative of the slope of the phase response. The steeper the slope of the linear phase response more delay there is through the filter. One may assign no delay to the filter and leave the phase response at zero for all frequency values. For this case equation (9) would not be used. Figure 14. Obtain the final filter coefficients. 4. Obtain the time domain impulse response of the filter: Compute the IFFT of X as shown in Figure 13. If the data indexes were all correct on the above steps to create the frequency domain response and its complex conjugate, then the imaginary part of x will be zero and the real part will be the desired impulse response of the filter. 5. Sample the impulse response to obtain the FIR filter coefficients. 9

10 Figure 15. Screen shot showing ArbFilt( ) function and menu to specify file name for the filter. Section 9: The DPO Filter Menu Shown in Figure 15 is a screen shot of the menu used to setup the ArbFilt1( ) math function. This demonstrates how the filter functions may be used in a math expression defined as math

11 Section 10: The Math Arbitrary Filter Library This section describes the library of FIR filters that are available for use under the arbfilt<x>( <fsource waveform> ) function in the Tektronix oscilloscope waveform math section. The user may find this under the path: c:\tekscope\math Arbitrary Filters\<filename> The filename of each filter identifies its type as lowpass, highpass, etc and also identifies its normalized cutoff frequency or other identifying factors. The precise magnitude characteristics of these filters are shown in the following graphs. These are all linear phase filters. Lowpass Filters: Figures 16 and 17 show the available set of lowpass filters. Their normalized frequency response is shown from 0 to 1/2 the sample rate. These filters will operate at any sample rate with cutoff frequency scaled as shown Figure 16. The filters have normalized cutoff frequencies of 0.05, 0.1, 0.15, 0.20, 0.25, 0.3, 0.35, 0.40, and Stop band rejection is typically between 50 and 60 db. Magnitude db Lowpass Filters Normalized Frequency Figure 16. Frequency response of the available lowpass filters. File Name Normalized Cutoff Frequency lowpass_0.05bw.flt 0.05 lowpass_0.10bw.flt 0.10 lowpass_0.15bw.flt 0.15 lowpass_0.20bw.flt 0.20 lowpass_0.25bw.flt 0.25 lowpass_0.30bw.flt 0.30 lowpass_0.35bw.flt 0.35 lowpass_0.40bw.flt 0.40 lowpass_0.45bw.flt 0.45 Figure 17. List of lowpass filters available in the library. 11

12 10 Bandpass Filters 0 Normalized Frequency Magnitude db Figure 18. Frequency response of the available highpass filters. Figure 20. Frequency response of the available bandpass filters. File Name Normalized Cutoff Frequency highpass_0.05bw.flt 0.05 highpass_0.10bw.flt 0.10 highpass_0.15bw.flt 0.15 highpass_0.20bw.flt 0.20 highpass_0.25bw.flt 0.25 highpass_0.30bw.flt 0.30 highpass_0.35bw.flt 0.35 highpass_0.40bw.flt 0.40 highpass_0.45bw.flt 0.45 Figure 19. List of highpass filters available in the library. Highpass Filters: Figures 18 and 19 show the available set of highpass filters. Their normalized frequency response is shown from 0 to 1/2 the sample rate. These filters will operate at any sample rate with cutoff frequency scaled as shown below on the graphs. The filters have normalized cutoff frequencies of 0.05, 0.1, 0.15, 0.20, 0.25, 0.3, 0.35, 0.40, and Stop band rejection is typically between 50 and 60 db. File Name Normalized Normalized Center Bandwidth Frequency bandpass_0.05bw_0.05center.flt bandpass_0.05bw_0.10center.flt bandpass_0.05bw_0.15center.flt bandpass_0.05bw_0.20center.flt bandpass_0.05bw_0.25center.flt bandpass_0.05bw_0.30center.flt bandpass_0.05bw_0.35center.flt bandpass_0.05bw_0.40center.flt bandpass_0.05bw_0.45center.flt Figure 21. Table of available normalized bandpass filters. Bandpass Filters: Each filter has a bandwidth of 0.05 times the sample rate. They will operate at any sample rate. The available center frequencies are 0.05, 0.10, 0.15, 0.20, 0.25, 0.30, 0.35, 0.40, Stopband attenuation is approximately -60 db and passband ripple is around 1 db. See Figures 20 and

13 Magnitude db Bandstop Filters Normalized Frequency Figure 22. Frequency response of the available bandstop filters. Figure 24. Frequency response of the available smoothing filters. File Name Normalized Normalized Center Bandwidth Frequency bandstop_0.1bw_0.10center.flt bandstop_0.1bw_0.15center.flt bandstop_0.1bw_0.20center.flt bandstop_0.1bw_0.25center.flt bandstop_0.1bw_0.30center.flt bandstop_0.1bw_0.35center.flt bandstop_0.1bw_0.40center.flt File Name Length Normalized Stopband Bandwidth attenuation db smooth3.flt smooth5.flt smooth10.flt smooth20.flt smooth50.flt smooth100.flt smooth200.flt Figure 23. Table of available normalized bandstop filters. Figure 25. Table of available smoothing filters. Bandstop Filters: Each filter has a bandwidth of 0.1 times the sample rate. They will operate at any sample rate. The available center frequencies are 0.10, 0.15, 0.20, 0.25, 0.30, 0.35, and Stopband attenuation is approximately 110 db, however, the noise floor of the oscilloscope will not allow for that depth. With an FFT and long record length and averaging turned on one can push noise floors into the 100 dbm range on an 8-bit scope! However, the scope will have some spurious signals above that floor. This is possible because the FFT is an average calculation internally and the averaging function increases the vertical bits of resolution. See Figures 22 and

14 Figure 26. Frequency response of the Hilbert transform filter. Figure 27. Frequency response of the differentiator filter. Smoothing Filters: These are sometimes called box car filters. They simply average together adjacent samples along the time record. The filter coefficients for these filters are all equal to 1/M where M is the length of the filter. The name of the filter files indicate what length the smoothing filter is. Their frequency responses are shown in Figure 24. Smoothing filters are lowpass filters with a somewhat less than optimal stop band characteristic. However, they are commonly used to remove high frequency noise from a displayed trace. Take care in using to insure that the passband of the signal you are filtering is well within the passband of the filter you choose. That will insure that only noise is removed. Lengths of 3, 5, 10, 20, 50, 100, and 200 are provided in the library. See Figure 25. Refer to Figure 24. The red trace is for filter length 3, followed by blue trace at 5, followed by magenta trace for 10, and so on. Hilbert Transform Filter: The ideal Hilbert transform filter has a gain of one at all frequencies and shifts the phase of all frequencies by 90 degrees. This type of filter is one of the types that may be specified in the Remez Exchange algorithm described in Theory and Application of Digital Signal Processing referenced on page 15. Notice that this filter departs from its desired behavior in the frequency range of 0 to times the sample rate and also in the range of about to 0.5 times the sample rate. This type of filter can be used to create quadrature signals over a wide frequency range. The filename for this filter is HilbertTransform90PhaseShift.flt. See Figure 26. Differentiator Filter: The ideal differentiator is a high pass filter that shifts phase by 90 degrees. Its frequency response would be linear all the way from DC to 0.5. However, that cannot easily be realized so the response of the filter provided in the library makes a good differentiator for the frequency range of DC to See Figure 27. Section 11: FIR Filter File Format This section describes the ASCII file format for storing filters for use in the Tektronix oscilloscope waveform math section. A filter menu function allows the user to specify a disk file name containing the filter. A single file format allows the user to specify a different set of coefficients for each sample rate at which the filter is allowed to operate. If the sample rate is not in the file list then the filter will not be applied to the data. The file format also allows the user to specify that the set of filter coefficients is normalized. This allows the same set of filter coefficients to operate at all sample rates. 14

15 The ASCII file format is specified as follows: # Comments preceded by # symbol < samplerate > coef1, coef2,. coefn < samplerate > coef1, coef2,. coefn < samplerate > coef1, coef2,. coefn Each set of filter coefficients in a file are specified in one row preceded by the sample rate value at which that set will operate. If the user specifies symbol for the sample rate then the filter will operate at all sample rates. If symbol is specified then there should only be one set of filter coefficients in the file. However, the user may have other rows with sample rates specified and they will be ignored. There will be a separate row for each sample rate the filter is to operate at. Each row may have a different number of coefficients with a maximum of The file may contain up to 20 rows. An example of file content for a normalized filter is shown as follows. This example is the contents of the smooth5.flt 0.2, 0.2, 0.2, 0.2, 0.2 An example of a filter that is setup to operate at a specific sample rate is given as follows. This is the contents of a file named 200 MHz_mult_sample_rates.flt that is included in the library directory on the oscilloscope. #This is a 4th order Bessel Thompsen low pass filter. #200MHz bandwidth, will operate at any of the following sample rates: # 40 GS/s, 20 GS/s, 10 GS/s, 5 GS/s, 2.5 GS/s, 1 GS/s, 500 MS/s 5e8; 1.968e-007,1.008, , , ,1.643e-005,-1.397e-006,1.434e-007 1e9; 9.524e-008,0.3899,0.4877,0.1304, , ,. 2.5e9; 3.868e-008, ,0.1081,0.1982,0.2284,0.1981, 5e9; 1.935e008, , , , , ,.. 1e10; 9.673e-009,3.445e-006, , , , , ,0. 2e10; 4.837e-009, 1.657e-008, 1.723e-006, 4.274e-005, ,.. 4e10;2.418e-009, e-009, 8.284e-009, e-008,8.613e-007,. Conclusion This paper has presented information on the design and use of FIR digital filters specifically targeted for the Tektronix oscilloscope waveform math sub-section. A frequency sampling filter design method was described to allow the oscilloscope user to create custom filters. In addition a library of FIR filters that are provided within the oscilloscope was defined. This library provides a wide range of normalized FIR filters for general purpose use. This paper has provided necessary information needed to enable the scope user to make effective use of the arbitrary FIR filter function in a DPO oscilloscope platform math package. 15

16 Glossary Convolution - A process using multiplies and additions to implement a filter operation. DSP Digital Signal Processing DUT Device Under Test FIR - Finite Impulse Response FFT Fast Fourier Transform IFFT Inverse Fast Fourier Transform IIR - Infinite Impulse Response Magnitude Response - The magnitude as a function of frequency at the output of a DUT as a function of constant amplitude input as a function of frequency. Phase Response the phase as a function of frequency at the output of a DUT given a cosine input signal as a function of frequency with zero phase. References 1. Alan V. Oppenheim/Rona. W. Schafer, Digital Signal Processing, Prentice-Hall Inc., Copyright 1975, page 155, ISBN Lawrence R. Rabiner-Bernard Gold, Theory and Application of Digital Signal Processing, Prentice-Hall, Inc., Copyright 1975 page Lawrence R. Rabiner-Bernard Gold, Theory and Application of Digital Signal Processing, Prentice-Hall, Inc., Copyright 1975 page Contact Tektronix: ASEAN / Australasia (65) Austria Balkan, Israel, South Africa and other ISE Countries Belgium Brazil & South America 55 (11) Canada 1 (800) Central East Europe, Ukraine and Baltics Central Europe & Greece Denmark Finland France & North Africa +33 (0) Germany +49 (221) Hong Kong (852) India (91) Italy +39 (02) Japan 81 (3) Luxembourg +44 (0) Mexico, Central America & Caribbean 52 (55) Middle East, Asia and North Africa The Netherlands Norway People s Republic of China 86 (10) Poland Portugal Republic of Korea 82 (2) Russia & CIS South Africa Spain (+34) Sweden Switzerland Taiwan 886 (2) United Kingdom & Eire +44 (0) USA 1 (800) For other areas contact Tektronix, Inc. at: 1 (503) Last Updated January Author: John J Pickerd Our most up-to-date product information is available at: Copyright 2006, Tektronix. All rights reserved. Tektronix products are covered by U.S. and foreign patents, issued and pending. Information in this publication supersedes that in all previously published material. Specification and price change privileges reserved. TEKTRONIX and TEK are registered trademarks of Tektronix, Inc. All other trade names referenced are the service marks, trademarks or registered trademarks of their respective companies. 1/06 FLG/WWW 4HW

TDS5000B, TDS6000B, TDS/CSA7000B Series Acquisition Modes

TDS5000B, TDS6000B, TDS/CSA7000B Series Acquisition Modes TDS5000B, TDS6000B, TDS/CSA7000B Series Acquisition Modes Tektronix oscilloscopes provide several different acquisition modes. While this gives the user great flexibility and choice, each mode is optimized

More information

Time-Correlated Multi-domain RF Analysis with the MSO70000 Series Oscilloscope and SignalVu Software

Time-Correlated Multi-domain RF Analysis with the MSO70000 Series Oscilloscope and SignalVu Software Time-Correlated Multi-domain RF Analysis with the MSO70000 Series Oscilloscope and SignalVu Software Technical Brief Introduction The MSO70000 Series Mixed Oscilloscope, when coupled with SignalVu Spectrum

More information

High-voltage Differential Probes TMDP0200 - THDP0200 - THDP0100 - P5200A - P5202A - P5205A - P5210A

High-voltage Differential Probes TMDP0200 - THDP0200 - THDP0100 - P5200A - P5202A - P5205A - P5210A High-voltage Differential Probes TMDP0200 - THDP0200 - THDP0100 - P5200A - P5202A - P5205A - P5210A BNC interface (P5200A probes) TekVPI interface (TMDP and THDP Series probes) TekProbe interface (P5202A,

More information

High-Speed Inter Connect (HSIC) Solution

High-Speed Inter Connect (HSIC) Solution High-Speed Inter Connect (HSIC) Solution HSIC Essentials Datasheet Protocol Decode Protocol decode Saves test time and resource costs. Designed for use with the MSO/DPO5000, DPO7000C, DPO/DSA/MSO70000C,

More information

1.5 GHz Active Probe TAP1500 Datasheet

1.5 GHz Active Probe TAP1500 Datasheet 1.5 GHz Active Probe TAP1500 Datasheet Easy to use Connects directly to oscilloscopes with the TekVPI probe interface Provides automatic units scaling and readout on the oscilloscope display Easy access

More information

TekConnect Adapters. TCA75 TCA-BNC TCA-SMA TCA-N TCA-292MM Data Sheet. Applications. Features & Benefits

TekConnect Adapters. TCA75 TCA-BNC TCA-SMA TCA-N TCA-292MM Data Sheet. Applications. Features & Benefits TekConnect Adapters TCA75 TCA-BNC TCA-SMA TCA-N TCA-292MM Data Sheet TCA-N TekConnect-to-N DC to 11 GHz (Instrument Dependent) 50 Ω Input (Only) TCA-SMA TekConnect-to-SMA DC to 18 GHz (Instrument Dependent)

More information

PCI Express Transmitter PLL Testing A Comparison of Methods. Primer

PCI Express Transmitter PLL Testing A Comparison of Methods. Primer PCI Express Transmitter PLL Testing A Comparison of Methods Primer Primer Table of Contents Abstract...3 Spectrum Analyzer Method...4 Oscilloscope Method...6 Bit Error Rate Tester (BERT) Method...6 Clock

More information

Filter Comparison. Match #1: Analog vs. Digital Filters

Filter Comparison. Match #1: Analog vs. Digital Filters CHAPTER 21 Filter Comparison Decisions, decisions, decisions! With all these filters to choose from, how do you know which to use? This chapter is a head-to-head competition between filters; we'll select

More information

Advanced Power Measurement and Analysis Software DPOPWR Datasheet

Advanced Power Measurement and Analysis Software DPOPWR Datasheet Advanced Power Measurement and Analysis Software DPOPWR Datasheet Power quality measurements computes THD, True Power, Apparent Power, Power Factor, and Crest Factor. These analysis outputs are shown in

More information

Frequency Response of Filters

Frequency Response of Filters School of Engineering Department of Electrical and Computer Engineering 332:224 Principles of Electrical Engineering II Laboratory Experiment 2 Frequency Response of Filters 1 Introduction Objectives To

More information

Evaluating Oscilloscope Bandwidths for Your Application

Evaluating Oscilloscope Bandwidths for Your Application Evaluating Oscilloscope Bandwidths for Your Application Application Note Table of Contents Introduction....1 Defining Oscilloscope Bandwidth.....2 Required Bandwidth for Digital Applications...4 Digital

More information

Time series analysis Matlab tutorial. Joachim Gross

Time series analysis Matlab tutorial. Joachim Gross Time series analysis Matlab tutorial Joachim Gross Outline Terminology Sampling theorem Plotting Baseline correction Detrending Smoothing Filtering Decimation Remarks Focus on practical aspects, exercises,

More information

Department of Electrical and Computer Engineering Ben-Gurion University of the Negev. LAB 1 - Introduction to USRP

Department of Electrical and Computer Engineering Ben-Gurion University of the Negev. LAB 1 - Introduction to USRP Department of Electrical and Computer Engineering Ben-Gurion University of the Negev LAB 1 - Introduction to USRP - 1-1 Introduction In this lab you will use software reconfigurable RF hardware from National

More information

SECTION 6 DIGITAL FILTERS

SECTION 6 DIGITAL FILTERS SECTION 6 DIGITAL FILTERS Finite Impulse Response (FIR) Filters Infinite Impulse Response (IIR) Filters Multirate Filters Adaptive Filters 6.a 6.b SECTION 6 DIGITAL FILTERS Walt Kester INTRODUCTION Digital

More information

802.11ac Power Measurement and Timing Analysis

802.11ac Power Measurement and Timing Analysis 802.11ac Power Measurement and Timing Analysis Using the 8990B Peak Power Analyzer Application Note Introduction There are a number of challenges to anticipate when testing WLAN 802.11ac [1] power amplifier

More information

TekSmartLab TBX3000A, TSL3000B Datasheet

TekSmartLab TBX3000A, TSL3000B Datasheet TekSmartLab TBX3000A, TSL3000B Datasheet TekSmartLab is the industry's first network-based instrument management solution for teaching labs that brings a more efficient lab experience. With the TekSmartLab,

More information

ANALYZER BASICS WHAT IS AN FFT SPECTRUM ANALYZER? 2-1

ANALYZER BASICS WHAT IS AN FFT SPECTRUM ANALYZER? 2-1 WHAT IS AN FFT SPECTRUM ANALYZER? ANALYZER BASICS The SR760 FFT Spectrum Analyzer takes a time varying input signal, like you would see on an oscilloscope trace, and computes its frequency spectrum. Fourier's

More information

Introduction to Digital Filters

Introduction to Digital Filters CHAPTER 14 Introduction to Digital Filters Digital filters are used for two general purposes: (1) separation of signals that have been combined, and (2) restoration of signals that have been distorted

More information

AC/DC Current Measurement Systems TCPA300, TCP312A, TCP305A, TCP303, TCPA400, TCP404XL Datasheet

AC/DC Current Measurement Systems TCPA300, TCP312A, TCP305A, TCP303, TCPA400, TCP404XL Datasheet AC/DC Current Measurement Systems TCPA300, TCP312A, TCP305A, TCP303, TCPA400, TCP404XL Datasheet Low DC drift and noise allows improved low-level current measurements 3rd party safety certification Applications

More information

The Effective Number of Bits (ENOB) of my R&S Digital Oscilloscope Technical Paper

The Effective Number of Bits (ENOB) of my R&S Digital Oscilloscope Technical Paper The Effective Number of Bits (ENOB) of my R&S Digital Oscilloscope Technical Paper Products: R&S RTO1012 R&S RTO1014 R&S RTO1022 R&S RTO1024 This technical paper provides an introduction to the signal

More information

PIEZO FILTERS INTRODUCTION

PIEZO FILTERS INTRODUCTION For more than two decades, ceramic filter technology has been instrumental in the proliferation of solid state electronics. A view of the future reveals that even greater expectations will be placed on

More information

Em bedded DSP : I ntroduction to Digital Filters

Em bedded DSP : I ntroduction to Digital Filters Embedded DSP : Introduction to Digital Filters 1 Em bedded DSP : I ntroduction to Digital Filters Digital filters are a important part of DSP. In fact their extraordinary performance is one of the keys

More information

The Fundamentals of Three-Phase Power Measurements. Application Note

The Fundamentals of Three-Phase Power Measurements. Application Note The Fundamentals of - Power Measurements pplication ote pplication ote 0 120 240 360 Figure 1. -phase voltage wavefm. Figure 2. -phase voltage vects. 100Ω 100Ω Figure 4. -phase supply, balanced load -

More information

FAST Fourier Transform (FFT) and Digital Filtering Using LabVIEW

FAST Fourier Transform (FFT) and Digital Filtering Using LabVIEW FAST Fourier Transform (FFT) and Digital Filtering Using LabVIEW Wei Lin Department of Biomedical Engineering Stony Brook University Instructor s Portion Summary This experiment requires the student to

More information

How to Measure 5 ns Rise/Fall Time on an RF Pulsed Power Amplifier Using the 8990B Peak Power Analyzer

How to Measure 5 ns Rise/Fall Time on an RF Pulsed Power Amplifier Using the 8990B Peak Power Analyzer How to Measure 5 ns Rise/Fall Time on an RF Pulsed Power Amplifier Using the 8990B Peak Power Analyzer Application Note Introduction In a pulsed radar system, one of the key transmitter-side components

More information

Impedance 50 (75 connectors via adapters)

Impedance 50 (75 connectors via adapters) VECTOR NETWORK ANALYZER PLANAR TR1300/1 DATA SHEET Frequency range: 300 khz to 1.3 GHz Measured parameters: S11, S21 Dynamic range of transmission measurement magnitude: 130 db Measurement time per point:

More information

CHAPTER 8 ANALOG FILTERS

CHAPTER 8 ANALOG FILTERS ANALOG FILTERS CHAPTER 8 ANALOG FILTERS SECTION 8.: INTRODUCTION 8. SECTION 8.2: THE TRANSFER FUNCTION 8.5 THE SPLANE 8.5 F O and Q 8.7 HIGHPASS FILTER 8.8 BANDPASS FILTER 8.9 BANDREJECT (NOTCH) FILTER

More information

RF Measurements Using a Modular Digitizer

RF Measurements Using a Modular Digitizer RF Measurements Using a Modular Digitizer Modern modular digitizers, like the Spectrum M4i series PCIe digitizers, offer greater bandwidth and higher resolution at any given bandwidth than ever before.

More information

LM833,LMF100,MF10. Application Note 779 A Basic Introduction to Filters - Active, Passive,and. Switched Capacitor. Literature Number: SNOA224A

LM833,LMF100,MF10. Application Note 779 A Basic Introduction to Filters - Active, Passive,and. Switched Capacitor. Literature Number: SNOA224A LM833,LMF100,MF10 Application Note 779 A Basic Introduction to Filters - Active, Passive,and Switched Capacitor Literature Number: SNOA224A A Basic Introduction to Filters Active, Passive, and Switched-Capacitor

More information

Understanding CIC Compensation Filters

Understanding CIC Compensation Filters Understanding CIC Compensation Filters April 2007, ver. 1.0 Application Note 455 Introduction f The cascaded integrator-comb (CIC) filter is a class of hardware-efficient linear phase finite impulse response

More information

Design of FIR Filters

Design of FIR Filters Design of FIR Filters Elena Punskaya www-sigproc.eng.cam.ac.uk/~op205 Some material adapted from courses by Prof. Simon Godsill, Dr. Arnaud Doucet, Dr. Malcolm Macleod and Prof. Peter Rayner 68 FIR as

More information

Design of Efficient Digital Interpolation Filters for Integer Upsampling. Daniel B. Turek

Design of Efficient Digital Interpolation Filters for Integer Upsampling. Daniel B. Turek Design of Efficient Digital Interpolation Filters for Integer Upsampling by Daniel B. Turek Submitted to the Department of Electrical Engineering and Computer Science in partial fulfillment of the requirements

More information

LAB 12: ACTIVE FILTERS

LAB 12: ACTIVE FILTERS A. INTRODUCTION LAB 12: ACTIVE FILTERS After last week s encounter with op- amps we will use them to build active filters. B. ABOUT FILTERS An electric filter is a frequency-selecting circuit designed

More information

Physical Layer Compliance Testing for 100BASE-TX

Physical Layer Compliance Testing for 100BASE-TX Physical Layer Compliance Testing for 100BASE-TX Application Note Engineers designing or validating the Ethernet physical layer on their products need to perform a wide range of tests, quickly, reliably

More information

Agilent BenchVue Software (34840B) Data capture simplified. Click, capture, done. Data Sheet

Agilent BenchVue Software (34840B) Data capture simplified. Click, capture, done. Data Sheet Agilent BenchVue Software (34840B) Data capture simplified. Click, capture, done. Data Sheet Use BenchVue software to: Visualize multiple measurements simultaneously Easily capture data, screen shots and

More information

Hideo Okawara s Mixed Signal Lecture Series. DSP-Based Testing Fundamentals 46 Per-pin Signal Generator

Hideo Okawara s Mixed Signal Lecture Series. DSP-Based Testing Fundamentals 46 Per-pin Signal Generator Hideo Okawara s Mixed Signal Lecture Series DSP-Based Testing Fundamentals 46 Per-pin Signal Generator Advantest Corporation, Tokyo Japan August 2012 Preface to the Series ADC and DAC are the most typical

More information

More Filter Design on a Budget

More Filter Design on a Budget Application Report SLOA096 December 2001 More Filter Design on a Budget Bruce Carter High Performance Linear Products ABSTRACT This document describes filter design from the standpoint of cost. Filter

More information

Transition Bandwidth Analysis of Infinite Impulse Response Filters

Transition Bandwidth Analysis of Infinite Impulse Response Filters Transition Bandwidth Analysis of Infinite Impulse Response Filters Sujata Prabhakar Department of Electronics and Communication UCOE Punjabi University, Patiala Dr. Amandeep Singh Sappal Associate Professor

More information

What is the difference between an equivalent time sampling oscilloscope and a real-time oscilloscope?

What is the difference between an equivalent time sampling oscilloscope and a real-time oscilloscope? What is the difference between an equivalent time sampling oscilloscope and a real-time oscilloscope? Application Note In the past, deciding between an equivalent time sampling oscilloscope and a real

More information

Agilent Time Domain Analysis Using a Network Analyzer

Agilent Time Domain Analysis Using a Network Analyzer Agilent Time Domain Analysis Using a Network Analyzer Application Note 1287-12 0.0 0.045 0.6 0.035 Cable S(1,1) 0.4 0.2 Cable S(1,1) 0.025 0.015 0.005 0.0 1.0 1.5 2.0 2.5 3.0 3.5 4.0 Frequency (GHz) 0.005

More information

TDA2040. 20W Hi-Fi AUDIO POWER AMPLIFIER

TDA2040. 20W Hi-Fi AUDIO POWER AMPLIFIER 20W Hi-Fi AUDIO POWER AMPLIFIER DESCRIPTION The TDA2040 is a monolithic integrated circuit in Pentawatt package, intended for use as an audio class AB amplifier. Typically it provides 22W output power

More information

chapter Introduction to Digital Signal Processing and Digital Filtering 1.1 Introduction 1.2 Historical Perspective

chapter Introduction to Digital Signal Processing and Digital Filtering 1.1 Introduction 1.2 Historical Perspective Introduction to Digital Signal Processing and Digital Filtering chapter 1 Introduction to Digital Signal Processing and Digital Filtering 1.1 Introduction Digital signal processing (DSP) refers to anything

More information

AN-837 APPLICATION NOTE

AN-837 APPLICATION NOTE APPLICATION NOTE One Technology Way P.O. Box 916 Norwood, MA 262-916, U.S.A. Tel: 781.329.47 Fax: 781.461.3113 www.analog.com DDS-Based Clock Jitter Performance vs. DAC Reconstruction Filter Performance

More information

Chapter 16. Active Filter Design Techniques. Excerpted from Op Amps for Everyone. Literature Number SLOA088. Literature Number: SLOD006A

Chapter 16. Active Filter Design Techniques. Excerpted from Op Amps for Everyone. Literature Number SLOA088. Literature Number: SLOD006A hapter 16 Active Filter Design Techniques Literature Number SLOA088 Excerpted from Op Amps for Everyone Literature Number: SLOD006A hapter 16 Active Filter Design Techniques Thomas Kugelstadt 16.1 Introduction

More information

A Basic Introduction to Filters Active Passive and Switched-Capacitor

A Basic Introduction to Filters Active Passive and Switched-Capacitor A Basic Introduction to Filters Active Passive and Switched-Capacitor 1 0 INTRODUCTION Filters of some sort are essential to the operation of most electronic circuits It is therefore in the interest of

More information

Agilent Creating Multi-tone Signals With the N7509A Waveform Generation Toolbox. Application Note

Agilent Creating Multi-tone Signals With the N7509A Waveform Generation Toolbox. Application Note Agilent Creating Multi-tone Signals With the N7509A Waveform Generation Toolbox Application Note Introduction Of all the signal engines in the N7509A, the most complex is the multi-tone engine. This application

More information

USB 3.0 CDR Model White Paper Revision 0.5

USB 3.0 CDR Model White Paper Revision 0.5 USB 3.0 CDR Model White Paper Revision 0.5 January 15, 2009 INTELLECTUAL PROPERTY DISCLAIMER THIS WHITE PAPER IS PROVIDED TO YOU AS IS WITH NO WARRANTIES WHATSOEVER, INCLUDING ANY WARRANTY OF MERCHANTABILITY,

More information

ELEN E4810: Digital Signal Processing Topic 8: Filter Design: IIR

ELEN E4810: Digital Signal Processing Topic 8: Filter Design: IIR ELEN E48: Digital Signal Processing Topic 8: Filter Design: IIR. Filter Design Specifications 2. Analog Filter Design 3. Digital Filters from Analog Prototypes . Filter Design Specifications The filter

More information

isim ACTIVE FILTER DESIGNER NEW, VERY CAPABLE, MULTI-STAGE ACTIVE FILTER DESIGN TOOL

isim ACTIVE FILTER DESIGNER NEW, VERY CAPABLE, MULTI-STAGE ACTIVE FILTER DESIGN TOOL isim ACTIVE FILTER DESIGNER NEW, VERY CAPABLE, MULTI-STAGE ACTIVE FILTER DESIGN TOOL Michael Steffes Sr. Applications Manager 12/15/2010 SIMPLY SMARTER Introduction to the New Active Filter Designer Scope

More information

SIGNAL PROCESSING & SIMULATION NEWSLETTER

SIGNAL PROCESSING & SIMULATION NEWSLETTER 1 of 10 1/25/2008 3:38 AM SIGNAL PROCESSING & SIMULATION NEWSLETTER Note: This is not a particularly interesting topic for anyone other than those who ar e involved in simulation. So if you have difficulty

More information

Loop Bandwidth and Clock Data Recovery (CDR) in Oscilloscope Measurements. Application Note 1304-6

Loop Bandwidth and Clock Data Recovery (CDR) in Oscilloscope Measurements. Application Note 1304-6 Loop Bandwidth and Clock Data Recovery (CDR) in Oscilloscope Measurements Application Note 1304-6 Abstract Time domain measurements are only as accurate as the trigger signal used to acquire them. Often

More information

NAPIER University School of Engineering. Electronic Systems Module : SE32102 Analogue Filters Design And Simulation. 4 th order Butterworth response

NAPIER University School of Engineering. Electronic Systems Module : SE32102 Analogue Filters Design And Simulation. 4 th order Butterworth response NAPIER University School of Engineering Electronic Systems Module : SE32102 Analogue Filters Design And Simulation. 4 th order Butterworth response In R1 R2 C2 C1 + Opamp A - R1 R2 C2 C1 + Opamp B - Out

More information

Chapter 12: The Operational Amplifier

Chapter 12: The Operational Amplifier Chapter 12: The Operational Amplifier 12.1: Introduction to Operational Amplifier (Op-Amp) Operational amplifiers (op-amps) are very high gain dc coupled amplifiers with differential inputs; they are used

More information

X-Series Signal Analysis. Future-ready instruments Consistent measurement framework Broadest set of applications and software

X-Series Signal Analysis. Future-ready instruments Consistent measurement framework Broadest set of applications and software X-Series Signal Analysis Future-ready instruments Consistent measurement framework Broadest set of applications and software Arrive Ahead with X-Series We can t predict the future, but Agilent can help

More information

Dithering in Analog-to-digital Conversion

Dithering in Analog-to-digital Conversion Application Note 1. Introduction 2. What is Dither High-speed ADCs today offer higher dynamic performances and every effort is made to push these state-of-the art performances through design improvements

More information

How to Design 10 khz filter. (Using Butterworth filter design) Application notes. By Vadim Kim

How to Design 10 khz filter. (Using Butterworth filter design) Application notes. By Vadim Kim How to Design 10 khz filter. (Using Butterworth filter design) Application notes. By Vadim Kim This application note describes how to build a 5 th order low pass, high pass Butterworth filter for 10 khz

More information

Video Quality Monitors Sentry Verify Datasheet

Video Quality Monitors Sentry Verify Datasheet Video Quality Monitors Sentry Verify Datasheet Applications Monitor input to hub sites to detect issues during transport IP video network impairment analysis QoS monitoring Digital Program Insertion (DPI)

More information

EXPERIMENT NUMBER 5 BASIC OSCILLOSCOPE OPERATIONS

EXPERIMENT NUMBER 5 BASIC OSCILLOSCOPE OPERATIONS 1 EXPERIMENT NUMBER 5 BASIC OSCILLOSCOPE OPERATIONS The oscilloscope is the most versatile and most important tool in this lab and is probably the best tool an electrical engineer uses. This outline guides

More information

Foreign Taxes Paid and Foreign Source Income INTECH Global Income Managed Volatility Fund

Foreign Taxes Paid and Foreign Source Income INTECH Global Income Managed Volatility Fund Income INTECH Global Income Managed Volatility Fund Australia 0.0066 0.0375 Austria 0.0045 0.0014 Belgium 0.0461 0.0138 Bermuda 0.0000 0.0059 Canada 0.0919 0.0275 Cayman Islands 0.0000 0.0044 China 0.0000

More information

The front end of the receiver performs the frequency translation, channel selection and amplification of the signal.

The front end of the receiver performs the frequency translation, channel selection and amplification of the signal. Many receivers must be capable of handling a very wide range of signal powers at the input while still producing the correct output. This must be done in the presence of noise and interference which occasionally

More information

AN3998 Application note

AN3998 Application note Application note PDM audio software decoding on STM32 microcontrollers 1 Introduction This application note presents the algorithms and architecture of an optimized software implementation for PDM signal

More information

Introduction to IQ-demodulation of RF-data

Introduction to IQ-demodulation of RF-data Introduction to IQ-demodulation of RF-data by Johan Kirkhorn, IFBT, NTNU September 15, 1999 Table of Contents 1 INTRODUCTION...3 1.1 Abstract...3 1.2 Definitions/Abbreviations/Nomenclature...3 1.3 Referenced

More information

Analog and Digital Filters Anthony Garvert November 13, 2015

Analog and Digital Filters Anthony Garvert November 13, 2015 Analog and Digital Filters Anthony Garvert November 13, 2015 Abstract In circuit analysis and performance, a signal transmits some form of information, such as a voltage or current. However, over a range

More information

Agilent MATLAB Data Analysis Software Packages for Agilent Oscilloscopes

Agilent MATLAB Data Analysis Software Packages for Agilent Oscilloscopes Agilent MATLAB Data Analysis Software Packages for Agilent Oscilloscopes Data Sheet Enhance your InfiniiVision or Infiniium oscilloscope with the analysis power of MATLAB software Develop custom analysis

More information

2.161 Signal Processing: Continuous and Discrete Fall 2008

2.161 Signal Processing: Continuous and Discrete Fall 2008 MT OpenCourseWare http://ocw.mit.edu.6 Signal Processing: Continuous and Discrete Fall 00 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. MASSACHUSETTS

More information

Lock - in Amplifier and Applications

Lock - in Amplifier and Applications Lock - in Amplifier and Applications What is a Lock in Amplifier? In a nut shell, what a lock-in amplifier does is measure the amplitude V o of a sinusoidal voltage, V in (t) = V o cos(ω o t) where ω o

More information

Positive Feedback and Oscillators

Positive Feedback and Oscillators Physics 3330 Experiment #6 Fall 1999 Positive Feedback and Oscillators Purpose In this experiment we will study how spontaneous oscillations may be caused by positive feedback. You will construct an active

More information

Analog Filters. A common instrumentation filter application is the attenuation of high frequencies to avoid frequency aliasing in the sampled data.

Analog Filters. A common instrumentation filter application is the attenuation of high frequencies to avoid frequency aliasing in the sampled data. Analog Filters Filters can be used to attenuate unwanted signals such as interference or noise or to isolate desired signals from unwanted. They use the frequency response of a measuring system to alter

More information

ε: Voltage output of Signal Generator (also called the Source voltage or Applied

ε: Voltage output of Signal Generator (also called the Source voltage or Applied Experiment #10: LR & RC Circuits Frequency Response EQUIPMENT NEEDED Science Workshop Interface Power Amplifier (2) Voltage Sensor graph paper (optional) (3) Patch Cords Decade resistor, capacitor, and

More information

Harmonics and Noise in Photovoltaic (PV) Inverter and the Mitigation Strategies

Harmonics and Noise in Photovoltaic (PV) Inverter and the Mitigation Strategies Soonwook Hong, Ph. D. Michael Zuercher Martinson Harmonics and Noise in Photovoltaic (PV) Inverter and the Mitigation Strategies 1. Introduction PV inverters use semiconductor devices to transform the

More information

CIRCUITS LABORATORY EXPERIMENT 3. AC Circuit Analysis

CIRCUITS LABORATORY EXPERIMENT 3. AC Circuit Analysis CIRCUITS LABORATORY EXPERIMENT 3 AC Circuit Analysis 3.1 Introduction The steady-state behavior of circuits energized by sinusoidal sources is an important area of study for several reasons. First, the

More information

Agilent E6832A W-CDMA Calibration Application

Agilent E6832A W-CDMA Calibration Application Agilent E6832A W-CDMA Calibration Application For the E6601A Wireless Communications Test Set Data Sheet The next generation of mobile phone manufacturing test. E6601A is the newest test set from Agilent

More information

Testing WiMAX receiver performance in a multipath propagation environment using Agilent s E6651A with an EB Propsim C8 radio channel emulator

Testing WiMAX receiver performance in a multipath propagation environment using Agilent s E6651A with an EB Propsim C8 radio channel emulator Testing WiMAX receiver performance in a multipath propagation environment using Agilent s E6651A with an EB Propsim C8 radio channel emulator Application Note 1 Summary Introduction As a part of the certification

More information

OM2210 Coherent Receiver Calibration Source OM2210 Datasheet

OM2210 Coherent Receiver Calibration Source OM2210 Datasheet OM2210 Coherent Receiver Calibration Source OM2210 Datasheet Class 1M Laser Safety Product IEC/UL 60950-1 Safety Certified Applications Calibration of Coherent Receiver Front-end Characteristics for Use

More information

Image Lab Software for the GS-900 Densitometer

Image Lab Software for the GS-900 Densitometer Image Lab Software for the GS-900 Densitometer Quick Start Guide Catalog # 170-9690 Bio-Rad Technical Support For help and technical advice, please contact the Bio-Rad Technical Support department. In

More information

Sophomore Physics Laboratory (PH005/105)

Sophomore Physics Laboratory (PH005/105) CALIFORNIA INSTITUTE OF TECHNOLOGY PHYSICS MATHEMATICS AND ASTRONOMY DIVISION Sophomore Physics Laboratory (PH5/15) Analog Electronics Active Filters Copyright c Virgínio de Oliveira Sannibale, 23 (Revision

More information

Lab #9: AC Steady State Analysis

Lab #9: AC Steady State Analysis Theory & Introduction Lab #9: AC Steady State Analysis Goals for Lab #9 The main goal for lab 9 is to make the students familar with AC steady state analysis, db scale and the NI ELVIS frequency analyzer.

More information

DIODE CIRCUITS LABORATORY. Fig. 8.1a Fig 8.1b

DIODE CIRCUITS LABORATORY. Fig. 8.1a Fig 8.1b DIODE CIRCUITS LABORATORY A solid state diode consists of a junction of either dissimilar semiconductors (pn junction diode) or a metal and a semiconductor (Schottky barrier diode). Regardless of the type,

More information

Rapid Resolution of Trouble Tickets

Rapid Resolution of Trouble Tickets Rapid Resolution of Trouble Tickets How to solve trouble-tickets faster with the new K15 Iub monitoring/automatic configuration and UMTS Multi Interface Call Trace applications Trouble ticket. It is an

More information

CTCSS REJECT HIGH PASS FILTERS IN FM RADIO COMMUNICATIONS AN EVALUATION. Virgil Leenerts WØINK 8 June 2008

CTCSS REJECT HIGH PASS FILTERS IN FM RADIO COMMUNICATIONS AN EVALUATION. Virgil Leenerts WØINK 8 June 2008 CTCSS REJECT HIGH PASS FILTERS IN FM RADIO COMMUNICATIONS AN EVALUATION Virgil Leenerts WØINK 8 June 28 The response of the audio voice band high pass filter is evaluated in conjunction with the rejection

More information

Keysight Technologies N1918A Power Analysis Manager and U2000 Series USB Power Sensors. Demo Guide

Keysight Technologies N1918A Power Analysis Manager and U2000 Series USB Power Sensors. Demo Guide Keysight Technologies N1918A Power Analysis Manager and U2000 Series USB Power Sensors Demo Guide Introduction This demonstration guide helps you to get familiar with the basic setup and coniguration requirements

More information

Jitter Transfer Functions in Minutes

Jitter Transfer Functions in Minutes Jitter Transfer Functions in Minutes In this paper, we use the SV1C Personalized SerDes Tester to rapidly develop and execute PLL Jitter transfer function measurements. We leverage the integrated nature

More information

CHAPTER 6 Frequency Response, Bode Plots, and Resonance

CHAPTER 6 Frequency Response, Bode Plots, and Resonance ELECTRICAL CHAPTER 6 Frequency Response, Bode Plots, and Resonance 1. State the fundamental concepts of Fourier analysis. 2. Determine the output of a filter for a given input consisting of sinusoidal

More information

ADC and DAC. Quantization

ADC and DAC. Quantization CHAPTER ADC and DAC Most of the signals directly encountered in science and engineering are continuous: light intensity that changes with distance; voltage that varies over time; a chemical reaction rate

More information

MODULATION Systems (part 1)

MODULATION Systems (part 1) Technologies and Services on Digital Broadcasting (8) MODULATION Systems (part ) "Technologies and Services of Digital Broadcasting" (in Japanese, ISBN4-339-62-2) is published by CORONA publishing co.,

More information

Agilent AN 1315 Optimizing RF and Microwave Spectrum Analyzer Dynamic Range. Application Note

Agilent AN 1315 Optimizing RF and Microwave Spectrum Analyzer Dynamic Range. Application Note Agilent AN 1315 Optimizing RF and Microwave Spectrum Analyzer Dynamic Range Application Note Table of Contents 3 3 3 4 4 4 5 6 7 7 7 7 9 10 10 11 11 12 12 13 13 14 15 1. Introduction What is dynamic range?

More information

See Horenstein 4.3 and 4.4

See Horenstein 4.3 and 4.4 EE 462: Laboratory # 4 DC Power Supply Circuits Using Diodes by Drs. A.V. Radun and K.D. Donohue (2/14/07) Department of Electrical and Computer Engineering University of Kentucky Lexington, KY 40506 Updated

More information

MATRIX TECHNICAL NOTES

MATRIX TECHNICAL NOTES 200 WOOD AVENUE, MIDDLESEX, NJ 08846 PHONE (732) 469-9510 FAX (732) 469-0418 MATRIX TECHNICAL NOTES MTN-107 TEST SETUP FOR THE MEASUREMENT OF X-MOD, CTB, AND CSO USING A MEAN SQUARE CIRCUIT AS A DETECTOR

More information

SWISS ARMY KNIFE INDICATOR John F. Ehlers

SWISS ARMY KNIFE INDICATOR John F. Ehlers SWISS ARMY KNIFE INDICATOR John F. Ehlers The indicator I describe in this article does all the common functions of the usual indicators, such as smoothing and momentum generation. It also does some unusual

More information

Floating Oscilloscope Measurements And Operator Protection

Floating Oscilloscope Measurements And Operator Protection Technical Brief Floating Oscilloscope Measurements And Operator Protection Introduction Oscilloscope users often need to make floating measurements where neither point of the measurement is at ground (earth)

More information

1995 Mixed-Signal Products SLAA013

1995 Mixed-Signal Products SLAA013 Application Report 995 Mixed-Signal Products SLAA03 IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make changes to their products or to discontinue any product or service

More information

T = 1 f. Phase. Measure of relative position in time within a single period of a signal For a periodic signal f(t), phase is fractional part t p

T = 1 f. Phase. Measure of relative position in time within a single period of a signal For a periodic signal f(t), phase is fractional part t p Data Transmission Concepts and terminology Transmission terminology Transmission from transmitter to receiver goes over some transmission medium using electromagnetic waves Guided media. Waves are guided

More information

Making Accurate Voltage Noise and Current Noise Measurements on Operational Amplifiers Down to 0.1Hz

Making Accurate Voltage Noise and Current Noise Measurements on Operational Amplifiers Down to 0.1Hz Author: Don LaFontaine Making Accurate Voltage Noise and Current Noise Measurements on Operational Amplifiers Down to 0.1Hz Abstract Making accurate voltage and current noise measurements on op amps in

More information

Application Report SLOA024B

Application Report SLOA024B Application Report July 999 Revised September 2002 Mixed Signal Products SLOA024B IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications,

More information

Lab 1: The Digital Oscilloscope

Lab 1: The Digital Oscilloscope PHYSICS 220 Physical Electronics Lab 1: The Digital Oscilloscope Object: To become familiar with the oscilloscope, a ubiquitous instrument for observing and measuring electronic signals. Apparatus: Tektronix

More information

Sampling Theorem Notes. Recall: That a time sampled signal is like taking a snap shot or picture of signal periodically.

Sampling Theorem Notes. Recall: That a time sampled signal is like taking a snap shot or picture of signal periodically. Sampling Theorem We will show that a band limited signal can be reconstructed exactly from its discrete time samples. Recall: That a time sampled signal is like taking a snap shot or picture of signal

More information

Simulating Envelope Tracking with Keysight Advanced Design System. Application Note

Simulating Envelope Tracking with Keysight Advanced Design System. Application Note Simulating Envelope Tracking with Keysight Advanced Design System Application Note 1.0 Introduction Modern modulated signals often have high peak-to-average power ratios (PAPR). Use of such high PAPR signals

More information

The Calculation of G rms

The Calculation of G rms The Calculation of G rms QualMark Corp. Neill Doertenbach The metric of G rms is typically used to specify and compare the energy in repetitive shock vibration systems. However, the method of arriving

More information

MICROPHONE SPECIFICATIONS EXPLAINED

MICROPHONE SPECIFICATIONS EXPLAINED Application Note AN-1112 MICROPHONE SPECIFICATIONS EXPLAINED INTRODUCTION A MEMS microphone IC is unique among InvenSense, Inc., products in that its input is an acoustic pressure wave. For this reason,

More information

AN3353 Application note

AN3353 Application note Application note IEC 61000-4-2 standard testing Introduction This Application note is addressed to technical engineers and designers to explain how STMicroelectronics protection devices are tested according

More information