Digital Integrator in MATLAB
%
Code for integration of delta signal--
clc
clear
all
close
all
n=-50:1:50;
num=[1];
den=[1
-1];
e=(n==0);
subplot(2,1,1);
stem(e);
subplot(2,1,2);
h=filter(num,den,e);
stem(h);
This book combines the teaching of the MATLAB® programming language with the presentation and development of carefully selected electrical...
MATLAB Programs/Code (matlabcoding.com)
No comments