No BSD License  

Highlights from
UWB Fixed-Point Model (Multiband OFDM)

image thumbnail
from UWB Fixed-Point Model (Multiband OFDM) by Martin Clark and Mike Mulligan
Ultrawideband (UWB) multiband OFDM physical layer with fixed-point transmitter/receiver modeling.

fpscaling(wordLength, LE, returnFracLength);
function result = fpscaling(wordLength, LE, returnFracLength);
n = find(LE(:,1)==wordLength);
E = LE(n, 2);
if nargin==2, returnFracLength=0; end
if returnFracLength
    result = E;
else
    result = 2^-E;
end

Contact us at files@mathworks.com