06-13-2024 06:36 PM
06-13-2024 06:39 PM
I am performing the FFT of a waveform measured by sr860 Lock-in Amplifier. But the FFT shape is wild. It appears to be incorrect. I have attached a screen shot of my Labview front panel and block diagram..Thank you for your assistance.
06-13-2024 09:38 PM
You are taking the FFT of a single point during each iteration. You need to have an array of points. Two options, wait until you collect all the data then do the FFT, or do a point-by-point FFT. I don’t have access to LabVIEW now to see if there is a point by point FFT function.
06-14-2024 12:53 AM
Thanks your your reply...it could be helpful if you can give me a guide/example on how to do the FFT at the end or point by point.. thanks
06-14-2024 01:03 AM
Hi PGeter,
@PGeter wrote:
it could be helpful if you can give me a guide/example on how to do the FFT at the end or point by point..
Use the FFT function from the Point-By-Point functions palette - instead of the FFT you use now…
You should understand the datatypes you use in your VI(s) and know which datatypes are useful for your task(s):
06-14-2024 04:30 PM
Thanks GerdW!
it works