Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Transform between IEEE, IBM or VAX floating point number formats and bytes expressions

4.00/5 (6 votes)
16 Dec 2012CPOL1 min read 30.3K   283  
This is an alternative for Transform between IEEE, IBM or VAX floating point number formats and bytes expressions

Code

Download HERE

Introduction

John Hou's work, Transform between IEEE, IBM, and VAX floating point numbers, was originally written in C++. I took John's work, and converted it to C# 4.0. This code helps with converting IBM floats to IEEE floats and vice-versa. It also includes transformations for VAX floats to IEEE floats.

This is a C# version of John Hou's wonderful work. Tangible software did the initial C++ to C# conversion, which I then cleaned up, fixed missing areas, and then wrapped the engine to make it easier to work with for .NET developers.

Background

John Hou's work is documented here.

http://www.codeproject.com/Articles/12363/Transform-between-IEEE-IBM-or-VAX-floating-point-n?fid=236108&df=90&mpp=10&noise=1&prof=True&sort=Position&view=Expanded&spc=None&fr=1#xx0xx

Using the code

The solution included here has a test project illustrating a simple IBM float conversion. Not every aspect of the code conversion was tested since the immediaten eed was IBM float support. Others are welcome to work on the VAX or IEEE parts. All code is in C#.

The main class library is Converter. It can be called as:

 

Converter c =new Converter();
byte[] bytes = new byte[] { 0x00, 0x00, 0x00, 0x80, 0x31, 0x93, 0x60, 0x48 };
double d = c.ConvertBytesToDouble(Platform.IbmFloat, bytes);


Console.WriteLine("Correct return value should be: " + 1620259200);
Console.WriteLine("Return Value:                   " + d);
Console.WriteLine();
Console.WriteLine("Press any key to continue...");
Console.Read();

Additional methods available off of the Converter class are:

  • ConvertDoublesToBytes - Converts a double value to byte array
  • ConvertSingleToBytes - Converts single floats to byte array

All of the methods will take a Platform enum indicating the source of the origination bytes or doubles. 

History

2012-11-12  Initial version.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)