viewFormat {hexView} | R Documentation |
View a Binary File
Description
Displays the raw bytes of a file like a hex editor, showing offsets within the file, raw bytes in binary or hexadecimal form, and a human-readable representation of the bytes as either ASCII characters, integers, or real values. The file is broken up into blocks according to a supplied file format specification.
Usage
viewFormat(..., page = FALSE)
Arguments
... |
Arguments passed to the function |
page |
If |
Details
This function is only called for its side-effect, which is to display the file.
Author(s)
Paul Murrell
See Also
Examples
viewFormat(hexViewFile("rawTest.int"),
memFormat(int1=integer4, int2=integer4))
viewFormat(hexViewFile("rawTest.int"),
memFormat(integers=vectorBlock(integer4, 20)))
[Package hexView version 0.3-4 Index]