mergespec {rainfarmr}R Documentation

Spectral merging of a coarse field and of a fine field at a given wavenumber

Description

The input fields are transformed to Fourier space, their Fourier spectra are merged at wavenumber kmax after adapting the variance of the fine field and an inverse Fourier transform is performed.

Usage

mergespec(ra, r, kmax = 0)

Arguments

ra

matrix containing a coarse field of size c(nas, nas).

r

matrix containing a field at higher resolution.

kmax

wavenumber to use for merging (default nas/2).

Value

The merged field, in physical space.

Author(s)

Jost von Hardenberg, j.vonhardenberg@isac.cnr.it

Examples

# Make a coarse field with power-law Fourier spectrum 
fa <- initmetagauss(1.7, 8)
ra <- metagauss(fa)
# Make a fine power-law Fourier spectrum
f <- initmetagauss(1.7, 32)
r <- metagauss(f)
# Merge the two fields in spectral space
rm <- mergespec(ra, r, kmax = 4)
# Check spectral slope of the resulting field
fx <- fft2d(rm)
fitslope(fx)
# 1.678554

[Package rainfarmr version 0.1 Index]