|
1 | | -// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*- |
2 | | -// |
| 1 | + |
3 | 2 | // Rmath.h: Rcpp R/C++ interface class library -- Wrappers for R's Rmath API |
4 | 3 | // |
5 | | -// Copyright (C) 2012 Dirk Eddelbuettel and Romain Francois |
| 4 | +// Copyright (C) 2012-2025 Dirk Eddelbuettel and Romain Francois |
6 | 5 | // |
7 | 6 | // This file is part of Rcpp. |
8 | 7 | // |
@@ -160,7 +159,7 @@ namespace R { |
160 | 159 | inline double dnbeta(double x, double a, double b, double ncp, int lg) { return ::Rf_dnbeta(x, a, b, ncp, lg); } |
161 | 160 | inline double pnbeta(double x, double a, double b, double ncp, int lt, int lg) { return ::Rf_pnbeta(x, a, b, ncp, lt, lg); } |
162 | 161 | inline double qnbeta(double p, double a, double b, double ncp, int lt, int lg) { return ::Rf_qnbeta(p, a, b, ncp, lt, lg); } |
163 | | - inline double rnbeta(double a, double b, double np) { return ::Rf_rnbeta(a, b, np); } |
| 162 | + //inline double rnbeta(double a, double b, double np) { return ::Rf_rnbeta(a, b, np); } |
164 | 163 |
|
165 | 164 | /* Non-central F Distribution */ |
166 | 165 | inline double dnf(double x, double df1, double df2, double ncp, int lg) { return ::Rf_dnf(x, df1, df2, ncp, lg); } |
|
0 commit comments