Monday, 27 January 2014

DIGITIZING AN ANALOG FILTER BY BILINEAR TRANSFORMATION METHOD (BLT) - MATLAB CODE - EXAMPLE

DIGITIZING AN ANALOG FILTER TO DIGITAL FILTER USING BILINEAR TRANSFORMATION METHOD

                  Here is a simple matlab code to digitize an anlog filter to a digial filter using bilinear transformation method, which is most commonly used technique.

                 The tranformation is achieved by the use of 'bilinear' function available in MATLAB toolset. It gets the analog filter co-effs & returns the digital filter co-eff.

PROGRAM:
clc;
clear all;
b=input('enter the analog numerator:');
a=input('enter the analog denominator:');
fs=1;
[bz,az]=bilinear(b,a,fs);
disp('num coeff');
disp(bz);
disp('deno coeff');
disp(az);

OUTPUT:
enter the analog numerator:8
enter the analog denominator:[6 4]
num coeff
0.5000 0.5000
deno coeff
            1.0000 ‐0.5000



1 comments:


  1. In the rapidly evolving world of printing technology, many businesses are turning to innovative solutions to meet their demands. One such advancement is uv dtf printing, which offers high-quality and durable results for various materials. This technique allows for vibrant, detailed designs that stand the test of time, making it a popular choice among designers and manufacturers alike. As the industry continues to grow, embracing uv dtf printing can provide a competitive edge and elevate product appeal.

    ReplyDelete

Search Here...