None.
Open in the MATLAB editor: f16dr_example
function f16dr_example fprintf('f16dr example results\n\n'); % Minimum absolute value of vector of integers and its location n = int64(5); x = [int64(1) 10 11 -2 9]; incx = int64(1); [xloc, xmin] = f16dr(n, x, incx); fprintf('minabs('); fprintf('%4d',x); fprintf(') = |x(%4d)| = %5d\n', xloc, xmin);
f16dr example results minabs( 1 10 11 -2 9) = |x( 1)| = 1