R/normalize_ev.R

Defines functions normalize_ev

Documented in normalize_ev

#' Normalize SEC elution volumes
#'
#' Normalize SEC elution volumes to be between 0 and 1 using measured void volume and column volume
#'
#'@param void The void volume of the column.
#'@param cv The column volume.
#'
#' @examples calibrate_sec( masses, void, cv, vols )
#'
#' @export
normalize_ev <- function( vols, void, cv ) {
  vols = ( vols - void ) / ( cv - void )
  return( vols )
}
gbedwell/calibrateR documentation built on April 25, 2024, 8:35 p.m.