root/ResearchApps/PHY/WARPLAB/WARPLAB_SISO/M_code/warplab_int2IP.m
| Revision 697, 276 bytes (checked in by MelissaDuarte, 10 months ago) |
|---|
| Line | |
|---|---|
| 1 | function dottedIPout = warplab_int2IP(intIn) |
| 2 | |
| 3 | addrChars(4) = mod(intIn, 2^8); |
| 4 | addrChars(3) = mod(bitshift(intIn, -8), 2^8); |
| 5 | addrChars(2) = mod(bitshift(intIn, -16), 2^8); |
| 6 | addrChars(1) = mod(bitshift(intIn, -24), 2^8); |
| 7 | |
| 8 | dottedIPout = sprintf('%d.%d.%d.%d', addrChars); |
Note: See TracBrowser
for help on using the browser.