04-09-2016 10:58 AM
Hello,
I received this kind of error :Error -20309 occurred at Amplitude and Level Measurements->practice.vi
(waveform index 0 of 1). Possible reason(s): Analysis: The amplitude of the waveform is zero, so the histogram method cannot be used.
I'm connecting the amplitude and level measurements to a waveform chart. and i received this kind of error. Please help to solve this kind of problem.
Thank you
04-09-2016 11:17 AM
We need to see code to help you debug this.
04-09-2016 04:59 PM
When you attach code, attach the VI itself. We need to be able to open your code in LabVIEW and try it out.
Bob Schor
03-28-2017 03:08 AM
03-28-2017 03:09 AM
hey guys please help me to get out of this error
i searched @ this but didnt get any clue.
please
03-28-2017 03:34 AM - edited 03-28-2017 03:36 AM
Hi guy,
the amplitude of the waveform is zero and so the histogram function cannot work as expected.
Solution: set an amplitude larger than zero…
(As long as you don't provide your VI you will not get much more help. Remember: we cannot edit or run images using LabVIEW!)
03-28-2017 04:58 AM
hey GerdW ,
i have attached vi and i have set amplitude 1
03-28-2017 05:53 AM
A full period of a 2 Hz signal is 500 msec. In the "Configure Simulate Signal", you specified 100 samples at 1000 samples per second. That's only 100 msec of data. There is not enough data to analyze the waveform.
As a minimum set (Num Samples) / (Samples per sec) to be greater that 500 milliseconds
06-09-2019 02:19 PM
Hi
Please help me, with the same error
06-10-2019 10:33 AM - edited 06-10-2019 10:34 AM
Hi osirism,
you are using way too much ExpressVIs! (And lots of other bad coding style.)
See the attachment for (only) some improvements!
You should also rethink about your DAQAssistent usage: you set your AI reading to just "1 sample on demand", but still convert the DDT wire to an array! Why is that? You only get a single (scalar) sample value!
On your error:
did you read the error explanation? Then it becomes pretty clear how to solve your problem…