function c = correlation_besselk ( n, rho, rho0 ) %*****************************************************************************80 % %% CORRELATION_BESSELK evaluates the Bessel K correlation function. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 16 February 2012 % % Author: % % John Burkardt % % Reference: % % Petter Abrahamsen, % A Review of Gaussian Random Fields and Correlation Functions, % Norwegian Computing Center, 1997. % % Parameters: % % Input, integer N, the number of arguments. % % Input, real RHO(N,1), the arguments. % % Input, real RHO0, the correlation length. % % Output, real C(N,1), the correlations. % rho = rho ( : ); c = ones ( n, 1 ); rhohat = abs ( rho ) / rho0; i = ( rho ~= 0.0 ); c(i) = rhohat(i) .* besselk ( 1, rhohat(i) ); return end