FileTools[Text]
WriteFloat
write a float to a file
Calling Sequence
Parameters
Description
Examples
WriteFloat(file, float, opt1, opt2, ... )
file
-
file descriptor or filename
float
float to write to the file
opt1, opt2, ...
(optional) argument of the form, name or name=string where name is one of delim, leftdelim, or rightdelim
The WriteFloat(file, float) command writes float to the file specified by file.
The WriteFloat function can place delimiters around float while writing. Without delimiters the characters of two consecutive calls to WriteFloat are continuous in the file and it is impossible to determine the correct location to separate the two floats. Delimiters can be added around the float by specifying, delim, leftdelim, or rightdelim.
The delim option adds delimiters on both sides of the float. The delimiter can be specified by passing delim=string. If a string is not specified then the delimiter is a single space.
The leftdelim option adds a delimiter before the float. The rightdelim option adds a delimiter after the float. The delimiter can be specified by passing leftdelim=string or rightdelim=string. If a string is not specified then the delimiter is a single space. The leftdelim and rightdelim options can be used together to specify asymmetric delimiters. If used in conjunction with delim, the delimiters specified by leftdelim or rightdelim take precedence.
If file is the name of an open file, the file descriptor is obtained automatically. If file is the name of a file that is not open, it is opened automatically. If file is an invalid descriptor, an error is raised.
FileToolsTextWriteFloat⁡testfile,12.34
5
FileToolsTextWriteCharacter⁡testfile, :
FileToolsTextWriteFloat⁡testfile,121.3121
8
FileToolsTextClose⁡testfile:
FileToolsTextReadFloat⁡testfile
12.34
121.3121
FileToolsRemove⁡testfile
FileToolsTextWriteFloat⁡testfile,1.234,delim:
FileToolsTextWriteFloat⁡testfile,1.213121,delim=::
FileToolsTextReadCharacter⁡testfile
1.234
:
1.213121
FileToolsTextWriteFloat⁡testfile,1.7,rightdelim=::
FileToolsTextWriteFloat⁡testfile,2.9:
FileToolsTextWriteFloat⁡testfile,3.3,leftdelim=::
1.7
2.9
3.3
See Also
FileTools[AtEndOfFile]
FileTools[Remove]
FileTools[Text][Close]
FileTools[Text][Open]
FileTools[Text][ReadCharacter]
FileTools[Text][ReadFloat]
FileTools[Text][ReadNextFloat]
FileTools[Text][ReadString]
IO_errors
Download Help Document