01-14-2008 01:04 AM
01-14-2008 01:35 AM - edited 01-14-2008 01:37 AM
That depends the format in which you have written data to the file
1. If you have written data as a numeric spreadsheet file, just use the 'read spreadsheet file' found in File I/O functions and plot the read numeric data directly on a chart
2. If your file is saved in a custiomized format ( with a file header, channel names etc), you will have to read the text file>> from the text string, extract the numeric data section, convert it to a string array using a 'Spreadsheet string to array' found in Strings functions>> then use a suitable 'String to Number' conversion function, and then plot the numeric data on to your Chart
Take a look at these examples shipped with LabVIEW: 'Write to Text file.vi' and 'Read from text file.vi'
To find, go to: LabVIEW>> FindExamples>>Fundamentals>>File input output Folder
01-17-2008 02:05 AM