Rcpp Version 0.9.10
cauchy.h
Go to the documentation of this file.
00001 // -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; tab-width: 4 -*-
00002 //
00003 // cauchy.h: Rcpp R/C++ interface class library -- 
00004 //
00005 // Copyright (C) 2010 - 2011 Douglas Bates, Dirk Eddelbuettel and Romain Francois
00006 //
00007 // This file is part of Rcpp.
00008 //
00009 // Rcpp is free software: you can redistribute it and/or modify it
00010 // under the terms of the GNU General Public License as published by
00011 // the Free Software Foundation, either version 2 of the License, or
00012 // (at your option) any later version.
00013 //
00014 // Rcpp is distributed in the hope that it will be useful, but
00015 // WITHOUT ANY WARRANTY; without even the implied warranty of
00016 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017 // GNU General Public License for more details.
00018 //
00019 // You should have received a copy of the GNU General Public License
00020 // along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
00021 
00022 #ifndef Rcpp__stats__cauchy_h
00023 #define Rcpp__stats__cauchy_h
00024 
00025 namespace Rcpp{
00026 namespace stats{
00027 
00028 inline double dcauchy_0(double x, int give_log){
00029         return ::Rf_dcauchy(x,0.0,1.0, give_log) ;
00030 }
00031 inline double dcauchy_1(double x, double location, int give_log){
00032         return ::Rf_dcauchy(x,location,1.0, give_log) ;
00033 }
00034 
00035 inline double pcauchy_0(double x, int lower_tail, int log_p){
00036         return ::Rf_pcauchy(x,0.0,1.0,lower_tail, log_p) ;
00037 }
00038 inline double pcauchy_1(double x, double location, int lower_tail, int log_p){
00039         return ::Rf_pcauchy(x,location,1.0,lower_tail, log_p) ;
00040 }
00041 
00042 inline double qcauchy_0(double p, int lower_tail, int log_p){
00043         return ::Rf_qcauchy(p, 0.0, 1.0, lower_tail, log_p ) ;
00044 }
00045 inline double qcauchy_1(double p, double location, int lower_tail, int log_p){
00046         return ::Rf_qcauchy(p, location, 1.0, lower_tail, log_p ) ;
00047 }
00048 
00049 } // stats
00050 } // Rcpp
00051 
00052 
00053 RCPP_DPQ_0(cauchy,Rcpp::stats::dcauchy_0,Rcpp::stats::pcauchy_0,Rcpp::stats::qcauchy_0)
00054 RCPP_DPQ_1(cauchy,Rcpp::stats::dcauchy_1,Rcpp::stats::pcauchy_1,Rcpp::stats::qcauchy_1)
00055 RCPP_DPQ_2(cauchy,::Rf_dcauchy,::Rf_pcauchy,::Rf_qcauchy)
00056 
00057 
00058 #endif
00059 
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Defines