06-02-2008 01:04 PM - edited 06-02-2008 01:11 PM
06-02-2008 01:40 PM
06-02-2008 02:08 PM - edited 06-02-2008 02:09 PM
06-03-2008 08:22 AM
06-03-2008 08:59 AM
@ap8888 wrote:
My sensor hardware outputs a data file with simple tabulated data at about 250Hz. I need this data to be read, mathematically manipulated (e.g. simple matrix multiplications to manipulate the read data), and then outputted.
(a) How would I go about doing this? Is the standard LV package sufficient? What tutorials should I look at?
(b) How quick would the 'read-manipulate-output' sequence be?
Thank you,
Alex
edit: To clarify, the original generated data file is constantly updated, and I need my analysis to be done (more or less) "in-sync" with this generation.
Message Edited by ap8888 on 06-02-2008 01:11 PM
06-03-2008 09:20 AM - edited 06-03-2008 09:29 AM
06-03-2008 09:37 AM - edited 06-03-2008 09:44 AM
06-03-2008 10:16 AM
@ap8888 wrote:
Could I perhaps manipulate this LabView executable to not just view the results and output the data file, but instead perform my calculations and export THAT in the data file?
Message Edited by ap8888 on 06-03-2008 09:44 AM
06-03-2008 10:24 AM - edited 06-03-2008 10:27 AM
06-03-2008 10:25 AM
Beat on your supllier for the LabVIEW source code. It will make your life a lot easier and improve your results.
Using the file as an intermediate will cause complications and eventually slow-down of performance. Some of the complicaitons include
1) Detecting when new data has been added to the file.
2) finding the "new part"
3) Potential file access conflicts
4) As teh file grows the processing required to read the file and grab the new stuff grow.
So beat on your supplier to provide the code.
Ben