medianFilter: Apply a median filter to a matrix

View source: R/c.R

medianFilterR Documentation

Apply a median filter to a matrix

Description

For each element in a matix, replace it with the median of the values around it.

Usage

medianFilter(x, mrad, nrad)

Arguments

x

numeric matrix to median filter

mrad

number of rows on either side of the value to use for median calculation

nrad

number of rows on either side of the value to use for median calculation

Value

A matrix whose values have been median filtered

Author(s)

Colin A. Smith, csmith@scripps.edu

Examples

mat <- matrix(1:25, nrow=5)
mat
medianFilter(mat, 1, 1)

xiaodfeng/DynamicXCMS documentation built on Aug. 6, 2023, 3:02 p.m.