None.
Open in the MATLAB editor: f16dq_example
function f16dq_example fprintf('f16dq example results\n\n'); % max absolute integer and location n = int64(5); x = [int64(1) 10 11 -2 9]; incx = int64(1); [xloc, xmax] = f16dq(n, x, incx); fprintf('maxabs('); fprintf('%4d',x); fprintf(') = |x(%4d)| = %5d\n', xloc, xmax);
f16dq example results maxabs( 1 10 11 -2 9) = |x( 3)| = 11