Transcription of The Delta Sequence - - - [n]
{{id}} {{{paragraph}}}
107 In this chapter, we shall consider some fundamental concepts of linear systems analysis and use the power of MATLAB to undertake system analysis. The Delta Sequence - - - [n] The Delta Sequence plays an important role in the characterization of discrete-time linear time-invariant systems. The Delta Sequence , written as [n], is defined as 1,[ ]0,n = 00nn= Practice -The Delta Sequence - >> n=-30:30; % specify index n >> Delta =(n= =0); % define the Delta Sequence >>stem(n, Delta , filled ) % plot the Delta Sequence The Unit-step Sequence - - - u[n] The unit-step Sequence , written as [ ]u n, is defined as [ ]1,0,u n = 00nn < 108 Practice - The Unit-step Sequence - (1) >>n=-30:30; % specify index n >>u_step=(n>=0); % define the unit step Sequence >>stem(n, u_step, filled ) % plot the unit step Sequence Practice -The Unit-step Sequence - (2) Provide a MATLAB code to sketch the discrete-time Sequence x[n] specified by [][][][]231 53x nnnn =+ >>n=-30:30; % specify index n >>xn=2*(n= =0)+((n-1)= =0)-5*((n-3)= =0); % define the Sequence x[n] >>stem(n,xn; filled ).
In this chapter, we shall consider some fundamental concepts of linear systems analysis and use the power of MATLAB to undertake system analysis. The Delta Sequence - - - δ[n] The delta sequence plays an important role in the characterization of discrete-time linear time-invariant systems. The delta sequence, written as δ[n], is defined as 1 ...
Domain:
Source:
Link to this page:
Please notify us if you found a problem with this document:
{{id}} {{{paragraph}}}