The document lists 10 tasks related to digital signal processing concepts including calculating the DFT and convolution of sequences, verifying the sampling theorem, solving difference equations, calculating autocorrelation, and designing various filters using MATLAB.
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
25 views
DSP Lab Questions
The document lists 10 tasks related to digital signal processing concepts including calculating the DFT and convolution of sequences, verifying the sampling theorem, solving difference equations, calculating autocorrelation, and designing various filters using MATLAB.
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
1.
Write a MATLAB program to calculate the 8-Point DFT of sequence x[n]
={1,2,3,2,1,3,4,1}. Plot its Magnitude and Phase. 2. Write a MATLAB program to verify the Sampling Theorem. 3. Wri te a M A T L A B p ro g ra m t o c a l c u l a te t h e c i rc u l ar c o n v ol u t i on of x [n ]= { 1 ,5 ,3 ,2 ,7 ,6 } and h[n] = {1, 2, 1, 3} in Time Domain. 4. Write a MATLAB program to calculate the Linear Convolution of two sequences x[n] ={1,5,3,2,8,6,1} and h[n] = {1, 2, 1, 3,1} in Time Domain 5. Solve the dif erence equation given by y[n] - (1/4)y[n-1] = x[n], if the input to the system is x[n] = u[n]-u[n-10]. Write a MATLAB program to verify the answer and plot the output y[n] 6. Write a Matlab program to calculate the Autocorrelation and Energy of a sequence x[n]={1,2,1,3,1,4,1,5}, and hence, verify the Energy and Symmetry properties of the Autocorrelation function. 7. Wri te a M AT L A B p ro g r a m to d e si g n a n F I R LO W PA S S f i l te r w i t h t h e f ol l o wi n g specifications: Fsamp=8000Hz, Fpass=1500Hz, Twidth=100Hz, A stop=40. Use Blackman Widow for Coefficient generation. 8. Write a MATLAB program to design an FIR HIGH PASS filter with the following specifications: Fsamp=8000Hz, Fpass=1500Hz, Twidth=100Hz, A stop=40. Use Blackman Widow for Coefficient generation. 9. Wri te a M AT L A B p ro g ra m t o d e si g n an I I R Fi l t e r f o r th e f ol l ow i n g s p e c i fi c a t i on s: Fpass=500Hz, Fstop=2000Hz,R p=3,R s=30,Fsamp=8000Hz. 10.