R/fx2str.R

Defines functions fx2str

Documented in fx2str

#' fx2str
#'
#' convert fx to character string

fx2str <- function(fx) {
	fx_vec <- as.character(fx)
	fx_str <- paste(fx_vec[2],fx_vec[1],fx_vec[3])
	return(fx_str)
}
twesleyb/Uezu2016 documentation built on Jan. 28, 2021, 3:56 p.m.