VerdubbelDit Info

Met deze functie verdubbel je een ingevoerde waarde x.

Code

VerdubbelDit <- function(x) {
  if (!is.numeric(x)) {
      stop("No string-based input allowed!")
  }
  n <- x*2
  n
}
plot(VerdubbelDit, xlim = c(-100,100), ylim = c(-200, 200))

Code example

VerdubbelDit(20)
VerdubbelDit(-10)
tryCatch(
  VerdubbelDit("hallo"),
  error = function(x) { print("hallo is invalid input indeed") }
)


JolienGay/useful-stuff documentation built on May 7, 2019, 12:03 p.m.