R/rotate.R

Defines functions rotate

Documented in rotate

#' Internal function which is used to rotate matrices and arrays.
#'
rotate <- function(x) t(apply(x, 2, rev))
h-a-graham/raytrix documentation built on Nov. 19, 2024, 10:27 p.m.