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