@stdlib/stats-base-dists-geometric-pmf 0.2.2 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +110 -17
- package/include/stdlib/stats/base/dists/geometric/pmf.h +38 -0
- package/lib/native.js +68 -0
- package/manifest.json +84 -0
- package/package.json +8 -3
- package/src/addon.c +22 -0
- package/src/main.c +48 -0
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2026 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -131,27 +131,120 @@ y = mypmf( 1.0 );
|
|
|
131
131
|
<!-- eslint no-undef: "error" -->
|
|
132
132
|
|
|
133
133
|
```javascript
|
|
134
|
-
var
|
|
135
|
-
var
|
|
134
|
+
var uniform = require( '@stdlib/random-array-uniform' );
|
|
135
|
+
var discreteUniform = require( '@stdlib/random-array-discrete-uniform' );
|
|
136
|
+
var logEachMap = require( '@stdlib/console-log-each-map' );
|
|
136
137
|
var pmf = require( '@stdlib/stats-base-dists-geometric-pmf' );
|
|
137
138
|
|
|
138
|
-
var
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
var
|
|
139
|
+
var opts = {
|
|
140
|
+
'dtype': 'float64'
|
|
141
|
+
};
|
|
142
|
+
var x = discreteUniform( 10, 0, 5, opts );
|
|
143
|
+
var p = uniform( 10, 0.0, 1.0, opts );
|
|
142
144
|
|
|
143
|
-
|
|
144
|
-
x = round( randu() * 5.0 );
|
|
145
|
-
p = randu();
|
|
146
|
-
y = pmf( x, p );
|
|
147
|
-
console.log( 'x: %d, p: %d, P( X = x; p ): %d', x, p.toFixed( 4 ), y.toFixed( 4 ) );
|
|
148
|
-
}
|
|
145
|
+
logEachMap( 'x: %d, p: %0.4f, P( X = x; p ): %0.4f', x, p, pmf );
|
|
149
146
|
```
|
|
150
147
|
|
|
151
148
|
</section>
|
|
152
149
|
|
|
153
150
|
<!-- /.examples -->
|
|
154
151
|
|
|
152
|
+
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
153
|
+
|
|
154
|
+
<section class="references">
|
|
155
|
+
|
|
156
|
+
<!-- C interface documentation. -->
|
|
157
|
+
|
|
158
|
+
* * *
|
|
159
|
+
|
|
160
|
+
<section class="c">
|
|
161
|
+
|
|
162
|
+
## C APIs
|
|
163
|
+
|
|
164
|
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
|
|
165
|
+
|
|
166
|
+
<section class="intro">
|
|
167
|
+
|
|
168
|
+
</section>
|
|
169
|
+
|
|
170
|
+
<!-- /.intro -->
|
|
171
|
+
|
|
172
|
+
<!-- C usage documentation. -->
|
|
173
|
+
|
|
174
|
+
<section class="usage">
|
|
175
|
+
|
|
176
|
+
### Usage
|
|
177
|
+
|
|
178
|
+
```c
|
|
179
|
+
#include "stdlib/stats/base/dists/geometric/pmf.h"
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
#### stdlib_base_dists_geometric_pmf( x, p )
|
|
183
|
+
|
|
184
|
+
Evaluates the [probability mass function][pmf] (PMF) of a [geometric][geometric-distribution] distribution with success probability `0 <= p <= 1`.
|
|
185
|
+
|
|
186
|
+
```c
|
|
187
|
+
double out = stdlib_base_dists_geometric_pmf( 4.0, 0.3 );
|
|
188
|
+
// returns ~0.072
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
The function accepts the following arguments:
|
|
192
|
+
|
|
193
|
+
- **x**: `[in] double` input value.
|
|
194
|
+
- **p**: `[in] double` probability of success.
|
|
195
|
+
|
|
196
|
+
```c
|
|
197
|
+
double stdlib_base_dists_geometric_pmf( const double x, const double p );
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
</section>
|
|
201
|
+
|
|
202
|
+
<!-- /.usage -->
|
|
203
|
+
|
|
204
|
+
<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
205
|
+
|
|
206
|
+
<section class="notes">
|
|
207
|
+
|
|
208
|
+
</section>
|
|
209
|
+
|
|
210
|
+
<!-- /.notes -->
|
|
211
|
+
|
|
212
|
+
<!-- C API usage examples. -->
|
|
213
|
+
|
|
214
|
+
<section class="examples">
|
|
215
|
+
|
|
216
|
+
### Examples
|
|
217
|
+
|
|
218
|
+
```c
|
|
219
|
+
#include "stdlib/stats/base/dists/geometric/pmf.h"
|
|
220
|
+
#include "stdlib/math/base/special/round.h"
|
|
221
|
+
#include <stdlib.h>
|
|
222
|
+
#include <stdio.h>
|
|
223
|
+
|
|
224
|
+
static double random_uniform( const double min, const double max ) {
|
|
225
|
+
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
|
|
226
|
+
return min + ( v*(max-min) );
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
int main( void ) {
|
|
230
|
+
double x;
|
|
231
|
+
double p;
|
|
232
|
+
double y;
|
|
233
|
+
int i;
|
|
234
|
+
|
|
235
|
+
for ( i = 0; i < 25; i++ ) {
|
|
236
|
+
x = stdlib_base_round( random_uniform( 0, 40 ) );
|
|
237
|
+
p = random_uniform( 0.0, 1.0 );
|
|
238
|
+
y = stdlib_base_dists_geometric_pmf( x, p );
|
|
239
|
+
printf( "x: %lf, p: %lf, P(X=x;p): %lf\n", x, p, y );
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
</section>
|
|
245
|
+
|
|
246
|
+
<!-- /.references -->
|
|
247
|
+
|
|
155
248
|
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
156
249
|
|
|
157
250
|
<section class="related">
|
|
@@ -186,7 +279,7 @@ See [LICENSE][stdlib-license].
|
|
|
186
279
|
|
|
187
280
|
## Copyright
|
|
188
281
|
|
|
189
|
-
Copyright © 2016-
|
|
282
|
+
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
|
|
190
283
|
|
|
191
284
|
</section>
|
|
192
285
|
|
|
@@ -199,8 +292,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
199
292
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-geometric-pmf.svg
|
|
200
293
|
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-geometric-pmf
|
|
201
294
|
|
|
202
|
-
[test-image]: https://github.com/stdlib-js/stats-base-dists-geometric-pmf/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
203
|
-
[test-url]: https://github.com/stdlib-js/stats-base-dists-geometric-pmf/actions/workflows/test.yml?query=branch:v0.
|
|
295
|
+
[test-image]: https://github.com/stdlib-js/stats-base-dists-geometric-pmf/actions/workflows/test.yml/badge.svg?branch=v0.3.0
|
|
296
|
+
[test-url]: https://github.com/stdlib-js/stats-base-dists-geometric-pmf/actions/workflows/test.yml?query=branch:v0.3.0
|
|
204
297
|
|
|
205
298
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-geometric-pmf/main.svg
|
|
206
299
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-geometric-pmf?branch=main
|
|
@@ -212,8 +305,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
212
305
|
|
|
213
306
|
-->
|
|
214
307
|
|
|
215
|
-
[chat-image]: https://img.shields.io/
|
|
216
|
-
[chat-url]: https://
|
|
308
|
+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
|
|
309
|
+
[chat-url]: https://stdlib.zulipchat.com
|
|
217
310
|
|
|
218
311
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
219
312
|
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Apache-2.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2024 The Stdlib Authors.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
#ifndef STDLIB_STATS_BASE_DISTS_GEOMETRIC_PMF_H
|
|
20
|
+
#define STDLIB_STATS_BASE_DISTS_GEOMETRIC_PMF_H
|
|
21
|
+
|
|
22
|
+
/*
|
|
23
|
+
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler.
|
|
24
|
+
*/
|
|
25
|
+
#ifdef __cplusplus
|
|
26
|
+
extern "C" {
|
|
27
|
+
#endif
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Evaluates the probability mass function (PMF) for a geometric distribution with success probability `p` at a value `x`.
|
|
31
|
+
*/
|
|
32
|
+
double stdlib_base_dists_geometric_pmf( const double x, const double p );
|
|
33
|
+
|
|
34
|
+
#ifdef __cplusplus
|
|
35
|
+
}
|
|
36
|
+
#endif
|
|
37
|
+
|
|
38
|
+
#endif // !STDLIB_STATS_BASE_DISTS_GEOMETRIC_PMF_H
|
package/lib/native.js
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Apache-2.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2024 The Stdlib Authors.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
'use strict';
|
|
20
|
+
|
|
21
|
+
// MODULES //
|
|
22
|
+
|
|
23
|
+
var addon = require( './../src/addon.node' );
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
// MAIN //
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Evaluates the probability mass function (PMF) for a geometric distribution with success probability `p` at a value `x`.
|
|
30
|
+
*
|
|
31
|
+
* @private
|
|
32
|
+
* @param {number} x - input value
|
|
33
|
+
* @param {Probability} p - success probability
|
|
34
|
+
* @returns {Probability} evaluated PMF
|
|
35
|
+
*
|
|
36
|
+
* @example
|
|
37
|
+
* var y = pmf( 4.0, 0.3 );
|
|
38
|
+
* // returns ~0.072
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* var y = pmf( 2.0, 0.7 );
|
|
42
|
+
* // returns ~0.063
|
|
43
|
+
*
|
|
44
|
+
* @example
|
|
45
|
+
* var y = pmf( -1.0, 0.5 );
|
|
46
|
+
* // returns 0.0
|
|
47
|
+
*
|
|
48
|
+
* @example
|
|
49
|
+
* var y = pmf( 0.0, NaN );
|
|
50
|
+
* // returns NaN
|
|
51
|
+
*
|
|
52
|
+
* @example
|
|
53
|
+
* var y = pmf( NaN, 0.5 );
|
|
54
|
+
* // returns NaN
|
|
55
|
+
*
|
|
56
|
+
* @example
|
|
57
|
+
* // Invalid success probability:
|
|
58
|
+
* var y = pmf( 2.0, 1.5 );
|
|
59
|
+
* // returns NaN
|
|
60
|
+
*/
|
|
61
|
+
function pmf( x, p ) {
|
|
62
|
+
return addon( x, p );
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
// EXPORTS //
|
|
67
|
+
|
|
68
|
+
module.exports = pmf;
|
package/manifest.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"options": {
|
|
3
|
+
"task": "build",
|
|
4
|
+
"wasm": false
|
|
5
|
+
},
|
|
6
|
+
"fields": [
|
|
7
|
+
{
|
|
8
|
+
"field": "src",
|
|
9
|
+
"resolve": true,
|
|
10
|
+
"relative": true
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"field": "include",
|
|
14
|
+
"resolve": true,
|
|
15
|
+
"relative": true
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"field": "libraries",
|
|
19
|
+
"resolve": false,
|
|
20
|
+
"relative": false
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"field": "libpath",
|
|
24
|
+
"resolve": true,
|
|
25
|
+
"relative": false
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"confs": [
|
|
29
|
+
{
|
|
30
|
+
"task": "build",
|
|
31
|
+
"wasm": false,
|
|
32
|
+
"src": [
|
|
33
|
+
"./src/main.c"
|
|
34
|
+
],
|
|
35
|
+
"include": [
|
|
36
|
+
"./include"
|
|
37
|
+
],
|
|
38
|
+
"libraries": [],
|
|
39
|
+
"libpath": [],
|
|
40
|
+
"dependencies": [
|
|
41
|
+
"@stdlib/math-base-napi-binary",
|
|
42
|
+
"@stdlib/math-base-assert-is-nonnegative-integer",
|
|
43
|
+
"@stdlib/math-base-assert-is-nan",
|
|
44
|
+
"@stdlib/math-base-special-pow"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"task": "benchmark",
|
|
49
|
+
"wasm": false,
|
|
50
|
+
"src": [
|
|
51
|
+
"./src/main.c"
|
|
52
|
+
],
|
|
53
|
+
"include": [
|
|
54
|
+
"./include"
|
|
55
|
+
],
|
|
56
|
+
"libraries": [],
|
|
57
|
+
"libpath": [],
|
|
58
|
+
"dependencies": [
|
|
59
|
+
"@stdlib/math-base-assert-is-nonnegative-integer",
|
|
60
|
+
"@stdlib/math-base-assert-is-nan",
|
|
61
|
+
"@stdlib/math-base-special-pow",
|
|
62
|
+
"@stdlib/math-base-special-round"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"task": "examples",
|
|
67
|
+
"wasm": false,
|
|
68
|
+
"src": [
|
|
69
|
+
"./src/main.c"
|
|
70
|
+
],
|
|
71
|
+
"include": [
|
|
72
|
+
"./include"
|
|
73
|
+
],
|
|
74
|
+
"libraries": [],
|
|
75
|
+
"libpath": [],
|
|
76
|
+
"dependencies": [
|
|
77
|
+
"@stdlib/math-base-assert-is-nonnegative-integer",
|
|
78
|
+
"@stdlib/math-base-assert-is-nan",
|
|
79
|
+
"@stdlib/math-base-special-pow",
|
|
80
|
+
"@stdlib/math-base-special-round"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/stats-base-dists-geometric-pmf",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Geometric distribution probability mass function (PMF).",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -14,9 +14,12 @@
|
|
|
14
14
|
}
|
|
15
15
|
],
|
|
16
16
|
"main": "./lib",
|
|
17
|
+
"gypfile": false,
|
|
17
18
|
"directories": {
|
|
18
19
|
"doc": "./docs",
|
|
20
|
+
"include": "./include",
|
|
19
21
|
"lib": "./lib",
|
|
22
|
+
"src": "./src",
|
|
20
23
|
"dist": "./dist"
|
|
21
24
|
},
|
|
22
25
|
"types": "./docs/types",
|
|
@@ -31,10 +34,12 @@
|
|
|
31
34
|
},
|
|
32
35
|
"dependencies": {
|
|
33
36
|
"@stdlib/math-base-assert-is-nan": "^0.2.2",
|
|
34
|
-
"@stdlib/math-base-assert-is-nonnegative-integer": "^0.2.
|
|
37
|
+
"@stdlib/math-base-assert-is-nonnegative-integer": "^0.2.2",
|
|
38
|
+
"@stdlib/math-base-napi-binary": "^0.3.1",
|
|
35
39
|
"@stdlib/math-base-special-pow": "^0.3.0",
|
|
36
40
|
"@stdlib/utils-constant-function": "^0.2.2",
|
|
37
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2"
|
|
41
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2",
|
|
42
|
+
"@stdlib/utils-library-manifest": "^0.2.3"
|
|
38
43
|
},
|
|
39
44
|
"devDependencies": {},
|
|
40
45
|
"engines": {
|
package/src/addon.c
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Apache-2.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2024 The Stdlib Authors.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
#include "stdlib/stats/base/dists/geometric/pmf.h"
|
|
20
|
+
#include "stdlib/math/base/napi/binary.h"
|
|
21
|
+
|
|
22
|
+
STDLIB_MATH_BASE_NAPI_MODULE_DD_D( stdlib_base_dists_geometric_pmf )
|
package/src/main.c
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Apache-2.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2024 The Stdlib Authors.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
#include "stdlib/stats/base/dists/geometric/pmf.h"
|
|
20
|
+
#include "stdlib/math/base/assert/is_nonnegative_integer.h"
|
|
21
|
+
#include "stdlib/math/base/assert/is_nan.h"
|
|
22
|
+
#include "stdlib/math/base/special/pow.h"
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Returns the probability mass function of a geometric distribution.
|
|
26
|
+
*
|
|
27
|
+
* @param x input value
|
|
28
|
+
* @param p success probability
|
|
29
|
+
* @return evaluated PMF
|
|
30
|
+
*
|
|
31
|
+
* @example
|
|
32
|
+
* double y = stdlib_base_dists_geometric_pmf( 4.0, 0.3 );
|
|
33
|
+
* // returns ~0.072
|
|
34
|
+
*/
|
|
35
|
+
double stdlib_base_dists_geometric_pmf( const double x, const double p ) {
|
|
36
|
+
if (
|
|
37
|
+
stdlib_base_is_nan( x ) ||
|
|
38
|
+
stdlib_base_is_nan( p ) ||
|
|
39
|
+
p < 0.0 ||
|
|
40
|
+
p > 1.0
|
|
41
|
+
) {
|
|
42
|
+
return 0.0/0.0; // NaN
|
|
43
|
+
}
|
|
44
|
+
if ( stdlib_base_is_nonnegative_integer( x ) ) {
|
|
45
|
+
return p * stdlib_base_pow( ( 1.0 - p ), x );
|
|
46
|
+
}
|
|
47
|
+
return 0.0;
|
|
48
|
+
}
|