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);
Reviewed by Author
on
18:57
Rating: 5
MATLAB for Beginners and Developers: A Project-Based Guide to Practical Applications MATLAB for Beginners and Developers is a practical, pr...
MATLAB Programs/Code (matlabcoding.com)
No comments