PRODUCTS
Products Overview
Mathematica
Mathematica Student Edition
Mathematica Home Edition
Wolfram
CDF Player
(free download)
Computable Document Format (CDF)
web
Mathematica
grid
Mathematica
Wolfram
Workbench
Wolfram
SystemModeler
Wolfram
Finance Platform
Mathematica
Add-Ons
Wolfram|Alpha Products
SOLUTIONS
Solutions Overview
Engineering
Aerospace Engineering & Defense
Chemical Engineering
Control Systems
Electrical Engineering
Image Processing
Industrial Engineering
Materials Science
Mechanical Engineering
Operations Research
Optics
Petroleum Engineering
Biotechnology & Medicine
Bioinformatics
Medical Imaging
Finance, Statistics & Business Analysis
Actuarial Sciences
Data Analysis & Mining
Econometrics
Economics
Financial Engineering & Mathematics
Financial Risk Management
Statistics
Software Engineering & Content Delivery
Authoring & Publishing
Interface Development
Software Engineering
Web Development
Science
Astronomy
Biological Sciences
Chemistry
Environmental Sciences
Geosciences
Social & Behavioral Sciences
Design, Arts & Entertainment
Game Design, Special Effects & Generative Art
Education
STEM Education Initiative
Higher Education
Community & Technical College Education
Primary & Secondary Education
Students
Technology
Computable Document Format (CDF)
High-Performance & Parallel Computing (HPC)
See Also: Technology Guide
PURCHASE
Online Store
Other Ways to Buy
Volume & Site Licensing
Contact Sales
Software
Service
Upgrades
Training
Books
Merchandise
SUPPORT
Support Overview
Mathematica
Documentation
Knowledge Base
Learning Center
Technical Services
Community & Forums
Training
Does My Site Have a License?
Wolfram User Portal
COMPANY
About Wolfram Research
News
Events
Wolfram Blog
Partnerships
Employment Opportunities
History of
Mathematica
Stephen Wolfram's Home Page
Contact Us
OUR SITES
All Sites
Wolfram|Alpha
Demonstrations Project
MathWorld
Integrator
Wolfram Functions Site
Mathematica Journal
Wolfram Media
Wolfram
Tones
Wolfram Science
Stephen Wolfram
SEARCH MATHEMATICA 8 DOCUMENTATION
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE
DOCUMENTATION CENTER
FOR THE LATEST INFORMATION.
Mathematica
>
Data Manipulation
>
Binary Data
>
Built-in
Mathematica
Symbol
$ByteOrdering
IntegerDigits
BinaryRead
BinaryWrite
See Also »
|
Binary Data
More About »
ByteOrdering
ByteOrdering
is an option for
BinaryRead
,
BinaryWrite
and related functions that specifies what ordering of bytes should be assumed for your computer system.
MORE INFORMATION
Possible settings for
ByteOrdering
are
+1
and
-1
.
+1
corresponds to big endian (appropriate for PowerPC and many other processors);
-1
corresponds to little endian (appropriate for x86 processors).
+1
corresponds to having the most significant byte first;
-1
to having the least significant byte first.
+1
is the order obtained from
IntegerDigits
[
n
, 256]
.
EXAMPLES
CLOSE ALL
Basic Examples
(2)
$ByteOrdering
gives the byte ordering on this machine:
Create a file with a 32-bit integer:
Read the data from the file:
Read the data with reverse byte ordering:
Recreate the correct interpretation using
Mathematica
functions:
$ByteOrdering
gives the byte ordering on this machine:
In[1]:=
Out[1]=
Create a file with a 32-bit integer:
In[1]:=
In[2]:=
In[3]:=
Read the data from the file:
In[4]:=
Out[4]=
In[5]:=
Read the data with reverse byte ordering:
In[6]:=
Out[6]=
Recreate the correct interpretation using
Mathematica
functions:
In[7]:=
Out[7]=
In[8]:=
Out[8]=
In[9]:=
SEE ALSO
$ByteOrdering
IntegerDigits
BinaryRead
BinaryWrite
MORE ABOUT
Binary Data
New in 5.2