Dead Band for Second order System

 clc;

clear;
close;
n=-1;
y=12;
while n<8
    n=n+1;
    y =[y 0.9*y(n+1)];
end
disp(y);
disp([-y(n+2) y(n+2)])

Comments

Popular posts from this blog

Computation of DFT Using Basic Equation of FFT and Power Spectrum Estimating using DFT

Compute Convolution for Longer Sequence

Spectrum Analysis using DFT