You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Evaluates the natural logarithm of the probability density function (logPDF) for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`.
197
+
Evaluates the natural logarithm of the probability density function (PDF) for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`.
198
198
199
199
```c
200
200
double y = stdlib_base_dists_betaprime_logpdf( 0.5, 1.0, 1.0 );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dists/betaprime/logpdf/include/stdlib/stats/base/dists/betaprime/logpdf.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ extern "C" {
27
27
#endif
28
28
29
29
/**
30
-
* Evaluates the probability density function (PDF) for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`.
30
+
* Evaluates the natural logarithm of the probability density function (PDF) for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`.
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dists/betaprime/logpdf/src/main.c
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -23,12 +23,12 @@
23
23
#include"stdlib/constants/float64/ninf.h"
24
24
25
25
/**
26
-
* Evaluates the natural logarithm of the probability density function (logPDF) for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`.
26
+
* Evaluates the natural logarithm of the probability density function (PDF) for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`.
27
27
*
28
28
* @param x input value
29
29
* @param alpha first shape parameter
30
30
* @param beta second shape parameter
31
-
* @returns expected value
31
+
* @returns evaluated logPDF
32
32
*
33
33
* @example
34
34
* double y = stdlib_base_dists_beta_logpdf( 0.5, 1.0, 1.0 );
0 commit comments