LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

spreadsheet files and binary files


Peñata wrote:

Haha wow. My brain really is taking some time to get going. How about 100 instead of 256? I think that should work. Smiley Tongue

 

And GerdW, thank you for pointing out the delimiters.


Is that Hex 100?

 

Sorry, couldn't resist. Smiley Wink

0 Kudos
Message 11 of 13
(650 Views)

 

Thanks for everybody's help on this.  I didn't find a good explanation of these differences before.

 

I was asking about the speed of reading/writing binary files of similar size to text files.  So, depending on the type of data and how it's represented, the file size can be equivalent between text and binary files but would there be any benefit to using binary files in terms of performance in that case?

0 Kudos
Message 12 of 13
(626 Views)
It really depends on the amount of data that you're dealing with. You said you're dealing with about 1000 floating point numbers. This is quite small, and you're better off determining which format you'd like to use for ease of use rather than worrying about speed or size issue. Now, if you were dealing with, say, a million or two floating point numbers, then it would be a different story. Saving the data as text file would mean an extra step of converting the text into a float. This can be expensive in terms of CPU time and memory.
0 Kudos
Message 13 of 13
(609 Views)