Filtering with Discrete transfer functions in matlab

In summary, the DSP problem was that MATLAB's fftshift() was swapping the last half of the data with the first, which made it look like the negative frequencies preceded the positive frequencies. This was not the case, as the positive and negative frequencies were actually the same frequency. However, because of this limitation, MATLAB would not allow negative integer indices, which made it difficult to read some of the literature on DSP that used non-positive indices.
  • #1
gandrin
2
0
Got a DSP problem. I think this is a bit complicated, and may need some DSP gurus to answer it. I've been banging my head on this literally for months now. Thought I had it figured out, but today find I'm still not done.

I have some Impedance spectroscopy data from electrodes, sampled at discrete frequencies. I want to model the transfer function that these electrodes form when connected in series to an amplifier (a simple R||C cct).

The goal is to multiply that discrete transfer function with the FFT(signal), then take IFFT(Product) to show what the amplifier actually sees.

My first inclination was to do the following:

(note: this is a voltage divider across one impedance [ R_amp||C_amp ] that is in series with Z_electrode)

Z_amp= R/sC / (R + 1/sC)
Z_amp= R / (sRC + 1)
Z_divider=Z_amp/(Z_amp + Z_electrode)
Z_divider = R./(R + (Z_electrode .* (1+sRC)))
so now I took the leap of faith...
w=1:1:100000; % the frequencies at which Z_electrode was sampled
Z_divider = R./ (R + (Z_electrode(w) .* (1 + iwRC)));

Then
Y=fft(signal).*Z_divider
filtered_signal=real(ifft(Y));

This gives a reasonable answer...but I'm worried it's false. The reason why is because when I do the same process with just an RC circuit (in this case a generic low-pass RC config), the answer is not right...

RC=1e-5;
Z_lowpass = 1./ (1 + iwRC);

The resulting "filter" was junk, not holding a DC voltage and "anticipating" voltage changes.

signal= ones(1,100000);
signal(50000:70000)=100;
Y=fft(signal);
ZY=Z_lowpass.*Y;
plot(real(ifft(ZY)))
hold
plot(signal,'r')

So I have two questions.

1. I have figured out the coefficients for that lowpass filter
k=deltaT/ (RC + deltaT)
filter([0 k], [1 -(1-k)], signal)

That was NOT EASY to figure out, though wikipedia gave guidance for this particular cct.

So is there an easier way to do that with other circuits in Matlab?


2. So how do I implement this filtering function in the Z_divider example above? How can I "discretize" my RC cct to be able to voltage divide with my electrode Impedance Spectroscopy? ( I do have an equivalent cct for the electrode, but it's a Constant Phase Element, and essentially impossible to figure out analytically.)
 
Physics news on Phys.org
  • #2
I think I've solved my own problem. The problem was the bizarre way MATLAB does FFT. I redid it with the following:

L=100000;
Fs=###;
w_filter=[-L/2:L/2-1]*Fs/L; % have to evaluate the function from -Fs/2:Fs/2-1

Z_lowpass = 1./ (1 + iw_filter*RC);

signal= ones(1,100000);
signal(50000:70000)=100;
Y=fft(signal);

%here's the key--fix the strange Matlab orientation
Y_shift=fftshift(Y);

ZY=Z_lowpass.*Y_shift;
ZY_unshift=ifftshift(ZY);
plot(real(ifft(ZY_unshift)))
hold
plot(signal,'r')
 
  • #3
gandrin said:
I do have an equivalent cct for the electrode, but it's a Constant Phase Element, and essentially impossible to figure out analytically.
Hi !
On a theoretical viewpoint, CPE can be figured out as shown in the paper "The Phasance Concept" published on Scribd.
For practical applications, many equivalent networks can be derived and used to model real electrical components. For example: "Theoretical impédances of capacitive électrodes" published on Scribd :
http://www.scribd.com/JJacquelin/documents
 
  • #4
the thing you got to remember about the DFT (this is not anything about MATLAB per se) is that it has an inherent periodicity. so the last half of the data (which precedes the first half of the repeated cycle of the same data) can be thought of as the "negative frequency" or the "negative time" data that precedes the first half. MATLAB's fftshift() is just meant to swap the last half with the first so that it looks like the negative frequencies precede the positive frequencies.the other dumb thing MATLAB does is insist that all indices are positive integers. 0 or negative integer indices are not allowed in MATLAB which is unfortunate since there is so much literature, especially in DSP, that has non-positive indices.
 
  • #5


I can understand the frustration and complexity of trying to solve a DSP problem. It seems like you have put a lot of effort into trying to figure out the transfer function for your electrodes and amplifier.

One suggestion I would have is to try using the built-in functions in Matlab specifically designed for filtering and signal processing. These functions, such as "filter" and "freqz" are optimized for efficient and accurate calculations, and may make your process easier and more accurate.

Additionally, for your second question, it may be helpful to discretize your RC circuit using the "c2d" function in Matlab. This function converts continuous-time models to discrete-time models, which may be more suitable for your analysis.

Overall, it seems like you have a good understanding of the theory behind your problem, but it may be helpful to utilize the tools and functions available in Matlab to simplify and improve your results. I hope this helps and good luck with your research!
 

1. What is filtering with discrete transfer functions in Matlab?

Filtering with discrete transfer functions in Matlab is a process that involves using discrete transfer functions to modify or remove certain frequencies from a signal. This can be used to enhance the signal, remove noise, or extract specific components of the signal.

2. How do I implement filtering with discrete transfer functions in Matlab?

To implement filtering with discrete transfer functions in Matlab, you will need to first define the transfer function using the "tf" function. Then, you can use the "filter" function to apply the transfer function to your signal. You can also visualize the results using the "freqz" function.

3. What are the advantages of using discrete transfer functions for filtering in Matlab?

Discrete transfer functions offer several advantages for filtering in Matlab, including the ability to precisely specify the frequency response, the ability to easily combine multiple filters, and the ability to apply filters to both continuous and discrete signals.

4. How do I choose the right discrete transfer function for my filtering needs?

Choosing the right discrete transfer function for filtering in Matlab depends on the specific requirements of your signal and the desired filtering results. You can experiment with different transfer functions and adjust their parameters to achieve the desired frequency response.

5. Can I use discrete transfer functions for real-time filtering in Matlab?

Yes, Matlab offers real-time filtering capabilities using discrete transfer functions. This can be achieved by using the "dfilt.dffir" or "dfilt.dffirt" objects, which allow you to create and apply discrete transfer functions in real-time. However, this may require specialized hardware and software configurations.

Similar threads

  • MATLAB, Maple, Mathematica, LaTeX
Replies
2
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
16
Views
967
  • MATLAB, Maple, Mathematica, LaTeX
Replies
11
Views
3K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
350
  • MATLAB, Maple, Mathematica, LaTeX
Replies
2
Views
9K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
2K
Replies
1
Views
6K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
3
Views
1K
Back
Top