gaussianize: Gaussianize field using rank ordering

Description Usage Arguments Value Author(s) Examples

View source: R/gaussianize.R

Description

The amplitudes of the input field are rank ordered and substituted with the corresponding rank-ordered samples from a Normal distribution.

Usage

1

Arguments

z

matrix containing the input field to be Gaussianized.

Value

The Gaussianized field with the same dimensions as the input field.

Author(s)

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

Examples

1
2
3
4
5
6
7
# Make some sample synthetic rainfall data
r <- exp(rnorm(64 * 64))
dim(r) <- c(64, 64)
# Gaussianize and check standard deviation
g <- gaussianize(r)
sd(g)
# [1] 1

rainfarmr documentation built on May 1, 2019, 8:02 p.m.