02-14-2003 07:55 AM
02-14-2003 08:14 AM
02-15-2003 04:17 AM
02-15-2003 12:50 PM
02-17-2003 03:29 AM
06-16-2008 02:23 PM
06-17-2008 07:41 PM
Hi Mathieu,
In the future I would recommend that you create a new thread for the community to better help you since this one was created back in 2003.
The first iteration of your loop does appear to function properly but the data in not valid after that point. You can use the highlight execution feature of LabVIEW to watch your program iterate. It does appear that the user can select to perform another analysis. The restart averaging does appear to be working also because when it is true only there is no averaging performed. You are iterating through the for loop and each iteration increases the offset that you use in your file read and it appears you are offsetting too far. As far as the data type, an array can only hold a single data type and a cluster can hold different data types. You can create an array of your clusters of data by connecting it to the right side of your for loop with auto-indexing enabled. Auto-indexing can be enabled/disabled on a tunnel by right-clicking the tunnel and making your selection.
I would also recommend you look at an example using the FFT Power Spectrum VI to see what to expect as a result. You can find a good example in the Example Finder by searching for spectrum and opening 'Power Spectrum Measurement.vi'. You can find the Example Finder by selecting Help>>Find Examples on the menu bar.
06-18-2008 03:20 AM
06-19-2008 07:17 PM