Sunday 27 April 2014

Gray Code | Binary to Gray Code and that to Binary Conversion

Binary to gray code conversion

     1. The M.S.B. of the gray code will be exactly equal to the first bit of the given binary number.

 
     2. Now the second bit of the code will be exclusive-or of the first and second bit of the given binary number, i.e if both the bits are same the result will be 0 and if they are different the result will be 1. 

     3. The third bit of gray code will be equal to the exclusive-or of the second and third bit of the given binary number. Thus the Binary to gray code conversion goes on. One example given below can make your idea clear on this type of conversion. 


No comments:

Post a Comment