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