R/mirror.matrix.R

Defines functions mirror.matrix

Documented in mirror.matrix

#' @export
#' 
mirror.matrix <-
function(x) {
  xx <- as.data.frame(x);
  xx <- rev(xx);
  xx <- as.matrix(xx);
  xx;
}

Try the Thermimage package in your browser

Any scripts or data that you put into this service are public.

Thermimage documentation built on Sept. 27, 2021, 5:11 p.m.