//Example 2-15// //binary to hexadecimal conversion// x=bin2dec('11011110101110') //decimal equivalent of the binary number// a=dec2hex(x) //Hex equivalent of the decimal number// disp(a) //answer in hexadecimal form//