04-09-2018 02:35 PM
hi,guys,I got this wave,but i can't get the time of the wave by the program,
This waveform is only fixed in frequency,How to get the time of the wave?
Solved! Go to Solution.
04-09-2018 06:51 PM
What kind of data is it? If it is a waveform (brown wire) you can use "get waveform components" to find t0 and dt.
If it is just an array of doubles (orange wire) you have to know the timing characteristics of your single in order to calculate it.
04-10-2018 01:56 AM
Hi weizhihua,
How to get the time of the wave?
Why don't you just read the x axis values?
It should be either "time" (in a unit choosen by you) or it should be sample-index: multiply sample index with dt of your waveform…
04-10-2018 02:31 AM
it is a waveform .The timing of the sine wave is random. I want to get the starting point and the end of the sine wave. I can't make it.
04-10-2018 02:31 AM
The timing of the sine wave is random. I want to get the starting point and the end of the sine wave. I can't make it.
04-10-2018 02:50 AM
04-10-2018 03:11 AM
Thanks.I'm going to learn how to get differentiation at LabVIEW,
04-10-2018 03:23 AM - edited 04-10-2018 03:24 AM
Hi wei,
I'm going to learn how to get differentiation at LabVIEW,
In the simplest case it's just the difference between current and previous sample.
You might think about a minimum difference because of noise in the signal…
04-10-2018 06:23 AM
I have done a similar detection using a "Moving RMS" calculation, which is exactly the same as a moving average except you use RMS instead of Mean.