R/pow_int.R

"pow_int" <- function(x, n, give=FALSE, strict=TRUE){

  jj <- process.args(x,n)
  x.vec <- jj$arg1
  n.vec <- jj$arg2
  attr <- jj$attr
  
  jj <- .C("pow_int",
           as.double(x.vec),
           as.integer(n.vec),
           as.integer(length(x.vec)),
           val=as.double(x.vec),
           err=as.double(x.vec),
           status=as.integer(0*x.vec),
           PACKAGE="gsl"
           )
  val <- jj$val
  err <- jj$err
  status <- jj$status
  attributes(val) <- attr
  attributes(err) <- attr  
  attributes(status) <- attr


  if(strict){
    val <- strictify(val,status)
  }
  
  if(give){
      return(list(val=val,err=err,status=status))
  } else {
    return(val)
  }
}  

Try the gsl package in your browser

Any scripts or data that you put into this service are public.

gsl documentation built on Feb. 16, 2023, 10:32 p.m.