02-08-2018 12:35 AM
Can someone help me out with the implementation of time delayed features in labview? I am attaching a word file with the formulae
Solved! Go to Solution.
02-08-2018 01:54 AM
02-08-2018 09:12 AM
Can you suggest a possible way in which these features maybe implemented in labview. Thank you for the information.
02-08-2018 09:34 AM - edited 02-08-2018 09:37 AM
02-09-2018 12:39 AM
Thank you so much GerdW KNIGHT OF NI for that demonstration. It is surely of great help to me
02-09-2018 05:02 AM
I am working on the extraction of time domain features from EMG signals. I have attempted the program with the understanding of the existing formula but am not getting the desired result. Also I have n idea as to how to set the threshold for the same. I am hereby attaching the program along with the formula
02-09-2018 05:36 AM - edited 02-09-2018 05:38 AM
Hi theres,
why do you start a new thread for the very same problem?
You really should do the LabVIEW basics and learn to handle arrays within LabVIEW!
This is the equivalent to your Word formula:
Subtract X[i] from X[i+1], take the absolute value, sum all differences…
Why do you think you need to AND some float values, compare the result to a threshold and sum up boolean values?
(There still is no "time domain" in your formulas. Nothing related to something like "t", "dt" or similar!)
02-12-2018 11:53 PM
I need to extract clean signal from a given EMG signal but have no idea as to how to do it in labview. I need to extract signal for a period of 200ms from a signal having sampling rate of 1000 samples/sec. Any suggestion or help in this regard is welcome I am attaching one of the signals in .txt format.
02-13-2018 12:05 AM
wrote:
I need to extract clean signal from a given EMG signal but have no idea as to how to do it in labview.
Please define the words "clean signal". (filtering? noise removal? averaging?)
Do you really know how to do it outside LabVIEW? If you can tell us how you would do it in any other programming language (or even paper&pencil) we will be happy to help you implement it in LabVIEW. 😄
02-16-2018 11:08 PM
I mean I need to get a sliding window of 200 samples over a signal of 10000 samples but have no idea on how to do it.