LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Error 20023... "The following conditions must be met: 0 < f_low <= f_high <= fs/2."

Solved!
Go to solution

@dafemagu wrote:

what about if your data acquisition rate was variable (dt not constant)?


Then you really can't make a good filter based on signal frequency.  You could approximate (ie average) the sample rate and use that to come close.  Or perhaps a simple moving average would be good enough.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
Message 11 of 13
(659 Views)

[Edit: started a reply, got interrupted, and found that crossrulz had already answered similarly.  Original post below, for the record.]

-----------------------------------------------------------

 

 Can you give some more details (and maybe start a new thread, as this one's been marked as solved, which will cause many readers to skip over it)?

 

The filter functions will calculate coefficients that depend on and assume constant sample rate data.   If you apply those coefficients to variable sample rate data, you won't get the standard filter frequency response characteristics.  You'll get something else.

   In the most common case of lowpass filtering, the "something else" you get will probably still behave somewhat like a lowpass filter, but with unpredictable frequency domain characteristics.

 

Do you know what all the dt intervals are?  If so, you can do some interpolation to construct *apparent* sample values at a constant sample rate.  You could filter *that*, thereby getting the know filter behavior.  If desired, you could do another interpolation to get back to the original variable dt intervals.

 

 

-Kevin P

CAUTION! New LabVIEW adopters -- it's too late for me, but you *can* save yourself. The new subscription policy for LabVIEW puts NI's hand in your wallet for the rest of your working life. Are you sure you're *that* dedicated to LabVIEW? (Summary of my reasons in this post, part of a voluminous thread of mostly complaints starting here).
Message 12 of 13
(657 Views)

Dear Kevin_prince,

 

The previous reply of  is correct. Also, I was thinking a little more on my problem, and I realised that I was doing everything wrong. What I have is a set of recorded data, at different sampling rates, for example, the first initial 60 points at 1 point every 60 seconds, the next 1000 points at 1 point every second, the next 60 points at 1 point every 60 seconds ....... and so on.

 

In any case, I was playing with the filters of the equipment where I acquire the data using low pass filters at different cutoff frequencies (10, 100, 1000, none). However, my equipment is limited to these frequencies only. So, I was thinking to apply the Labview digital filters in my recorded signal when I use no filter in my equipment.

 

I think that my original idea is fundamentally wrong, because, it is incorrect to apply frequency filters in already recorded data.

 

Anyway, thank you for your interpolation idea, it is always a useful tool.

0 Kudos
Message 13 of 13
(623 Views)