root/ResearchApps/PHY/WARPLAB/WARPLAB_SISO/M_code/warplab_int2IP.m

Revision 697, 276 bytes (checked in by MelissaDuarte, 10 months ago)

Adding warplab m files

Line 
1function dottedIPout = warplab_int2IP(intIn)
2
3addrChars(4) = mod(intIn, 2^8);
4addrChars(3) = mod(bitshift(intIn, -8), 2^8);
5addrChars(2) = mod(bitshift(intIn, -16), 2^8);
6addrChars(1) = mod(bitshift(intIn, -24), 2^8);
7
8dottedIPout = sprintf('%d.%d.%d.%d', addrChars);
Note: See TracBrowser for help on using the browser.