Skip to content

Commit 23ee2ff

Browse files
chore: updates and refractor some file
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 0d20d30 commit 23ee2ff

File tree

3 files changed

+9
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/poisson/logpmf

3 files changed

+9
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/poisson/logpmf/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,15 @@ for ( i = 0; i < 10; i++ ) {
171171

172172
#### stdlib_base_dists_poisson_logpmf( x, lambda )
173173

174+
<<<<<<< HEAD
174175
<<<<<<< HEAD
175176
Evaluates the natural logarithm of the probability mass function (PMF) for a Poisson distribution with mean parameter `lambda`.
176177
=======
177178
Evaluates the natural logarithm of the probability mass function (PMF) for a Poisson distribution with mean parameter `lambda` at a value `x`.
178179
>>>>>>> b4ecbe5ab00 (feat: add c implementation for /base/dists/poisson/logpmf)
180+
=======
181+
Evaluates the natural logarithm of the probability mass function (PMF) for a Poisson distribution with mean parameter `lambda`.
182+
>>>>>>> 2dfae310be5 (chore: updates and refractor some file)
179183
180184
```c
181185
double out = stdlib_base_dists_poisson_logpmf( 4.0, 3.0 );

lib/node_modules/@stdlib/stats/base/dists/poisson/logpmf/include/stdlib/stats/base/dists/poisson/logpmf.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,14 @@ extern "C" {
2828

2929
/**
3030
<<<<<<< HEAD
31+
<<<<<<< HEAD
3132
* Evaluates the quantile function for a Poisson distribution with mean parameter `lambda`.
3233
=======
3334
* Returns the logpmf of a Poisson distribution.
3435
>>>>>>> b4ecbe5ab00 (feat: add c implementation for /base/dists/poisson/logpmf)
36+
=======
37+
* Evaluates the quantile function for a Poisson distribution with mean parameter `lambda`.
38+
>>>>>>> 2dfae310be5 (chore: updates and refractor some file)
3539
*/
3640
double stdlib_base_dists_poisson_logpmf( const double x, const double lambda );
3741

lib/node_modules/@stdlib/stats/base/dists/poisson/logpmf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
=======
3535
3636
/**
37-
* Evaluates the quantile function for a Poisson distribution with mean parameter `lambda` at a probability `p`.
37+
* Evaluates the quantile function for a Poisson distribution with mean parameter `lambda`.
3838
*
3939
* @param x input value
4040
* @param lambda mean parameter

0 commit comments

Comments
 (0)