Displaying 1 result from an estimated 1 matches for "readfloat4".
Did you mean:
readfloat
2000 Jun 29
1
Binary file functions in R
...ple:
>
>fopen would take a filename and some information about the open mode
>(read and write would probably be enough modes) and would return a
>file handle.
>
>readint8, readint16, readint32, readint64 would read a specified count
>of integers into an integer vector.
>
>readfloat4, readfloat8 would read a specified count of floating point
>values into a vector of doubles.
>
>readchar would read a specified count of characters into a single
>component character vector, or take two counts, and read n characters
>m times into an m component vector.
>
>There...