R/rotate180.matrix.R

Defines functions rotate180.matrix

Documented in rotate180.matrix

#' @export
#' 
rotate180.matrix <-
function(x) { 
  xx <- rev(x);
  dim(xx) <- dim(x);
  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.