Skip to main content

MATLAB coding: Plotting of Discrete time Signals using stem

Graphical Representation of Discrete time Signals

 Graphically, a discrete time signal can be represented using stem.  This comaand shows the data in the form of samples (stems) starting from the baseline along x-axis and terminates each line in a circle or other marker.

The syntax is :

stem(a);
stem(t,a);
stem(t,a,'fill');
stem(t,a,'fill,'--')

stem(a) plots given data sequence a as stems along x-axis at equally spaced and automatically generated values.

stem(t,a) plots values of t versus the columns of a.
t and a must be the vectors or matrices of same size.

stem(t,x,'fill') will plot similar to above with ending circles filled.

stem(t,x,'fill','-') will plot similar to above with circles filled and dashed lines.
Fig.-1

Example:
plot the signal x=sin(t) using stem command.
t=linspace(-pi,pi,15);
%fifteen equidistant instants between -pi to pi.

y=sin(t);
stem(t,y);               % output is shown in Fig-1.







Fig.-2





% for filled circles

t=linspace(-pi,pi,15);
y=sin(t);
stem(t,y,'fill');    % output is shown in Fig-2








Fig.-3






% for filled circles and dashed
lines

t=linspace(-pi,pi,15);
y=sin(t);
stem(t,y,'fill', '--');    % output is shown in Fig-3









Basic discrete time signals.
1. Unit impulse signal
2. Unit step signal
3. unit ramp signal
4. Real valued exponential discrete time signal
5. Complex valued exponential discrete time signal

(No built in function is available in MATLAB for these basic functions)


1. Unit impulse signal 𝛿(n) 

Example:

1) 𝛿(n)       for -6<=n<=6
2) 𝛿(n+4)   for -8<=n<=8
3) 𝛿(n-2)    for -5<=n<=5

1) n=-6:6;                                                        
delta=1.*(n==0);
subplot(411);stem(n,delta,’fill’);
title(’delta(n)’);

2)  n=-8:8;                                                                  delta=1.*(n==-4);
subplot(411);stem(n,delta,’fill’);
title(’delta(n)’);










3) n=-5:5;                                                                  delta=1.*(n==2);
subplot(411);
stem(n,delta);


title(’delta(n)’);

Comments

Popular posts from this blog

Verilog HDL: Structured Procedures: Initial Statement

Structured Procedures: used in behavioral modelling There are two structured procedure statements in Verilog: always and initial. These statements are the two most basic statements in behavioral modeling. All other behavioral statements can appear only inside these structured procedure statements. Verilog is a concurrent programming language unlike the C programming language, which is sequential in nature. Activity flows in Verilog run in parallel rather than in sequence. Each always and initial statement represents a separate activity flow in Verilog. Each activity flow starts at simulation time 0. The statements always and initial cannot be nested. 1. Initial Statement All statements inside an initial statement constitute an initial block. An initial block starts at time 0, executes exactly once during a simulation, and then does not execute again. If there are multiple initial blocks, each block starts to execute concurrently at time 0. Each block finishes execution in

VERILOG HDL: Vectors and arrays

Vectors:  Nets or reg data types in verilog HDL can be declared as vectors (a word of multiple bits). wire a;      // single bit variable. wire [4:0]b;  //5-bit vector wire reg clock;     // scalar register reg [0:31] bus;  // 32-bits bus register reg [63:0]count1;  // 64-bit register count1 reg [0:31]count2;   // 32-bit register count2 Part select of a variable vector bus[31]=1'b0;   // set 31th bit of bus count1[0]; // 0th bit of count1 register count1[31-:8] ;  //// start bit=31, width=8=> data[31:24] count1[24+:8] ;  //// start bit=24, width=8=> data[31:24] count2[31-:8] ;  //// start bit=31, width=8=> data[24:31] count2[24+:8] ;  //// start bit=24, width=8=> data[24:31] //in a loop to select all bytes of the vector. input a,b; reg j; reg [255:0]data1; reg [0:255]data2; alsways@ (a,b) begin for (j=0; j<=31; j=j+1) byte = data1[(j*8)+:8]; //Sequence is [7:0], [15:8]... [255:248] //Can initialize a part of the vector data1[(byteN

Vrilog HDL: Nonblocking Procedural Assignments

Nonblocking Procedural Assignment Nonblocking assignments allow scheduling of assignments without blocking execution of the statements that follow in a sequential block. A <= operator is used to specify nonblocking assignments. Note that this operator has the same symbol as a relational operator, less_than_equal_to. The operator <= is interpreted as a relational operator in an expression and as an assignment operator in the context of a nonblocking assignment. To illustrate the behavior of nonblocking statements and its difference from blockinglets take an example. Example: reg x, y, z; reg [15:0] reg_a, reg_b; integer count; //All behavioral statements must be inside an initial or always block initial begin x = 0; y = 1; z = 1; //Scalar assignments count = 0; //Assignment to integer variables reg_a = 16'b0; reg_b = reg_a; //Initialize vectors reg_a[2] <= #15 1'b1; //Bit select assignment with delay reg_b[15:13] <= #10 {x, y, z}; //Assign result