You are on page 1of 3

Page No: 1

Digital Filter Design (EET3134)


How to prepare the reports?

1. Introduction
Please follow the below mentioned formatting tips strictly. No changes in the formatting is
allowed.
2. This is how a section heading should look like (Georgia Bold
14pt)

(a) This is how the subsection heading should look like. (Georgia Bold 11pt)
This is how an explanation should look like. (Georgia Plain 11 pt)

(b) Subsection 2 heading

3. Assignments
(c) Assignment 1
(a) This is how the assignment questions need to look. (Georgia Bold+Italics
11pt)
This is how the explanation of the question should look like. (Georgia Plain 11pt)

%% This is how your programs and the console output should look like
%% in the report (Courier New Bold 10pt)

%% Abstract design, desired filter

clc; clear; close all;

%% transfer function numerator:


num1=conv([1 0.1],[1 25]); num=conv(num1,[1 40]);

%% transfer function denominator:


den1=conv([1 1],[1 10]); den=conv(den1,[1 100]);
w=logspace(-2,3); %logaritmic set of frequency values
G=freqs(num,den,w); %computes frequency response
AG=20*log10(abs(G)); %take decibels

%% plot all the results


semilogx(w,AG,'--b'); %plots decibels
axis([0.01 1000 -25 5]);
grid;
ylabel('dB'); xlabel('rad/s');
title('frequency response of desired filter');

Reg. No.: (Type your Reg. No.) _______________


B. Tech. 7th Sem (ECE) (Type your name)
Page No: 2
Digital Filter Design (EET3134)
How to prepare the reports?

Figure 1.1: This is how the images should be captioned (Georgia Bold 10pt)

( 1) 2
(1 + ) = 1 + + + (Equation 1)
1! 2!

4. Explain what you have learned in this assignment set.


(d) Conclusions
(a) In this assignment I learned
(b) I also learned

(e) MATLAB functions used


Function name Short Explanation
sound() : Play vector as sound
audioread() :
audiowrite() :
filter() :

(f) References used


[1] Provide references of the books, research articles, web resources, youtube videos etc.
that you have referenced in making of the report.

Reg. No.: (Type your Reg. No.) _______________


B. Tech. 7th Sem (ECE) (Type your name)
Page No: 3
Digital Filter Design (EET3134)
How to prepare the reports?

Reg. No.: (Type your Reg. No.) _______________


B. Tech. 7th Sem (ECE) (Type your name)

You might also like