blob: 00fcd8e1dc63079ddf62402e5c12fdb126914062 (
plain)
1
2
3
4
5
6
7
8
|
//Chapter-15, Example 15.4, Page 494
//=============================================================================
clc
clear
//CALCULATIONS
x1=base2dec(['4AB','23F'],16)//converting hexadecimal to decimal
disp(x1);
//=================================END OF PROGRAM=======================================================================================================
|