Suppose that I'm simulating SAR signal processing in matlab. You know a block diagram like this :
Here's what I have tried up to now.
t = 0:0.01:10;
f0 = 10^(-6);
t1 = 1;
f1 = 100;
y = chirp(t,f0,t1,f1,'linear');
%starting to generate I's
y1Modulated = y.*cos(2*pi*f0*t);
y1ModulatedFrequencyDomain = fft(y1Modulated);
As you see in the diagram the signal entering the low-pass filter is an analog one. So we should use filters in
matlab ---> signal processing toolbox ---> Analog and Digital filters ---> Analog filters
But I don't know which to use or how to obtain parameters of functions like: besselap
, cheblap
and so on?
There are many ways to implement what you are trying to do. Here is one way to write the code for your block diagram:
Now, you also asked which low-pass filter design to use. This depends entirely on what you are trying to achieve, and you need to specify a filter to meet your requirements. In my example above I have used an 8th order Butterworth design. But often an FIR filter is used in order to achieve a linear phase response.