function hammersley_step_set ( step ) %% HAMMERSLEY_STEP_SET sets the step of the leaped Hammersley subsequence. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 29 January 2005 % % Author: % % John Burkardt % % Parameters: % % Input, integer STEP, the step of the leaped Hammersley subsequence. % global hammersley_STEP step = floor ( step ); if ( ~halham_step_check ( step ) ) error ( 'HAMMERSLEY_STEP_SET - Fatal error!' ); end hammersley_STEP = step;