Created
September 11, 2018 19:00
-
-
Save chadsten/72a10c2f009509d92cf8107ff9f39d98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#' Sum of all velcocity calculations | |
#' | |
#' @param hit_velocity (int) | |
#' @param cus_velocity (int) | |
#' @param qty_velocity (int) | |
#' @param imt_velocity (int) | |
#' @param lod_velocity (int) | |
#' | |
#' @return The sum of all passed parameters | |
#' | |
#' @examples | |
#' add(-2, 0, 1, 1, -3) | |
#' | |
#' @export | |
calculate_overall_velocity <- function(hit_velocity, cus_velocity, qty_velocity, imt_velocity, lod_velocity) { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment