R/num2oct.R

Defines functions num2oct

Documented in num2oct

#' Number to Octal
#'
#' Convert number to octal string.
#'
#' @param x a number.
#' @param width minimum width for output string.
#'
#' @return Octal string.
#'
#' @export

num2oct <- function(x, width=NULL)
{
  format.octmode(x, width=width)
}
arnima-github/arni documentation built on Oct. 28, 2023, 6:18 p.m.