Skip to content

Commit ae3b11a

Browse files
committed
feat: add C implementation for stats/base/dists/lognormal/logpdf
1 parent 74f9832 commit ae3b11a

File tree

733 files changed

+2528
-57644
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

733 files changed

+2528
-57644
lines changed

lib/node_modules/@stdlib/array/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ Lastly, the namespace contains various other functions for dealing with arrays,
191191
- <span class="signature">[`nansLike( x[, dtype] )`][@stdlib/array/nans-like]</span><span class="delimiter">: </span><span class="description">create an array filled with NaNs and having the same length and data type as a provided array.</span>
192192
- <span class="signature">[`nans( length[, dtype] )`][@stdlib/array/nans]</span><span class="delimiter">: </span><span class="description">create an array filled with NaNs and having a specified length.</span>
193193
- <span class="signature">[`nextDataType( [dtype] )`][@stdlib/array/next-dtype]</span><span class="delimiter">: </span><span class="description">return the next larger array data type of the same kind.</span>
194-
- <span class="signature">[`nulls( length[, dtype] )`][@stdlib/array/nulls]</span><span class="delimiter">: </span><span class="description">create an array filled with nulls and having a specified length.</span>
195194
- <span class="signature">[`oneToLike( x[, dtype] )`][@stdlib/array/one-to-like]</span><span class="delimiter">: </span><span class="description">generate a linearly spaced numeric array whose elements increment by `1` starting from one and having the same length and data type as a provided input array.</span>
196195
- <span class="signature">[`oneTo( n[, dtype] )`][@stdlib/array/one-to]</span><span class="delimiter">: </span><span class="description">generate a linearly spaced numeric array whose elements increment by `1` starting from one.</span>
197196
- <span class="signature">[`onesLike( x[, dtype] )`][@stdlib/array/ones-like]</span><span class="delimiter">: </span><span class="description">create an array filled with ones and having the same length and data type as a provided array.</span>
@@ -334,8 +333,6 @@ console.log( objectKeys( ns ) );
334333

335334
[@stdlib/array/next-dtype]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/next-dtype
336335

337-
[@stdlib/array/nulls]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/nulls
338-
339336
[@stdlib/array/one-to-like]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/one-to-like
340337

341338
[@stdlib/array/one-to]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/one-to

lib/node_modules/@stdlib/array/base/README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ The namespace exports the following:
124124
- <span class="signature">[`everyByRight( x, predicate[, thisArg] )`][@stdlib/array/base/every-by-right]</span><span class="delimiter">: </span><span class="description">test whether all elements in an array pass a test implemented by a predicate function, iterating from right to left.</span>
125125
- <span class="signature">[`everyBy( x, predicate[, thisArg] )`][@stdlib/array/base/every-by]</span><span class="delimiter">: </span><span class="description">test whether all elements in an array pass a test implemented by a predicate function.</span>
126126
- <span class="signature">[`every( x )`][@stdlib/array/base/every]</span><span class="delimiter">: </span><span class="description">test whether all elements in an array are truthy.</span>
127-
- <span class="signature">[`falses( len )`][@stdlib/array/base/falses]</span><span class="delimiter">: </span><span class="description">create a "generic" array filled with `false` values.</span>
128127
- <span class="signature">[`fancySliceAssign( x, y, s, strict )`][@stdlib/array/base/fancy-slice-assign]</span><span class="delimiter">: </span><span class="description">assign element values from a broadcasted input array to corresponding elements in an output array.</span>
129128
- <span class="signature">[`fancySlice( x, s, strict )`][@stdlib/array/base/fancy-slice]</span><span class="delimiter">: </span><span class="description">return a shallow copy of a portion of an array.</span>
130129
- <span class="signature">[`fillBy( x, start, end, fcn[, thisArg] )`][@stdlib/array/base/fill-by]</span><span class="delimiter">: </span><span class="description">fill all elements within a portion of an array according to a callback function.</span>
@@ -261,7 +260,6 @@ The namespace exports the following:
261260
- <span class="signature">[`toDeduped( x, limit, equalNaNs )`][@stdlib/array/base/to-deduped]</span><span class="delimiter">: </span><span class="description">copy elements to a new "generic" array after removing consecutive duplicated values.</span>
262261
- <span class="signature">[`toInsertedAt( x, index, value )`][@stdlib/array/base/to-inserted-at]</span><span class="delimiter">: </span><span class="description">return a new array containing every element from an input array and with a provided value inserted at a specified index.</span>
263262
- <span class="signature">[`toReversed( x )`][@stdlib/array/base/to-reversed]</span><span class="delimiter">: </span><span class="description">return a new array with elements in reverse order.</span>
264-
- <span class="signature">[`trues( len )`][@stdlib/array/base/trues]</span><span class="delimiter">: </span><span class="description">create a "generic" array filled with `true` values.</span>
265263
- <span class="signature">[`unary2dBy( arrays, shape, fcn, clbk[, thisArg] )`][@stdlib/array/base/unary2d-by]</span><span class="delimiter">: </span><span class="description">apply a unary function to each element retrieved from a two-dimensional nested input array according to a callback function and assign results to elements in a two-dimensional nested output array.</span>
266264
- <span class="signature">[`unary2d( arrays, shape, fcn )`][@stdlib/array/base/unary2d]</span><span class="delimiter">: </span><span class="description">apply a unary callback to elements in a two-dimensional nested input array and assign results to elements in a two-dimensional nested output array.</span>
267265
- <span class="signature">[`unary3dBy( arrays, shape, fcn, clbk[, thisArg] )`][@stdlib/array/base/unary3d-by]</span><span class="delimiter">: </span><span class="description">apply a unary function to each element retrieved from a three-dimensional nested input array according to a callback function and assign results to elements in a three-dimensional nested output array.</span>
@@ -502,8 +500,6 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu );
502500

503501
[@stdlib/array/base/every]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/every
504502

505-
[@stdlib/array/base/falses]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/falses
506-
507503
[@stdlib/array/base/fancy-slice-assign]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/fancy-slice-assign
508504

509505
[@stdlib/array/base/fancy-slice]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/fancy-slice
@@ -776,8 +772,6 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu );
776772

777773
[@stdlib/array/base/to-reversed]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/to-reversed
778774

779-
[@stdlib/array/base/trues]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/trues
780-
781775
[@stdlib/array/base/unary2d-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/unary2d-by
782776

783777
[@stdlib/array/base/unary2d]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/unary2d

lib/node_modules/@stdlib/array/base/docs/types/index.d.ts

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ import entries2views = require( '@stdlib/array/base/entries2views' );
9999
import every = require( '@stdlib/array/base/every' );
100100
import everyBy = require( '@stdlib/array/base/every-by' );
101101
import everyByRight = require( '@stdlib/array/base/every-by-right' );
102-
import falses = require( '@stdlib/array/base/falses' );
103102
import fancySlice = require( '@stdlib/array/base/fancy-slice' );
104103
import fancySliceAssign = require( '@stdlib/array/base/fancy-slice-assign' );
105104
import fill = require( '@stdlib/array/base/fill' );
@@ -236,7 +235,6 @@ import toAccessorArray = require( '@stdlib/array/base/to-accessor-array' );
236235
import toDeduped = require( '@stdlib/array/base/to-deduped' );
237236
import toInsertedAt = require( '@stdlib/array/base/to-inserted-at' );
238237
import toReversed = require( '@stdlib/array/base/to-reversed' );
239-
import trues = require( '@stdlib/array/base/trues' );
240238
import unary2d = require( '@stdlib/array/base/unary2d' );
241239
import unary2dBy = require( '@stdlib/array/base/unary2d-by' );
242240
import unary3d = require( '@stdlib/array/base/unary3d' );
@@ -2407,18 +2405,6 @@ interface Namespace {
24072405
*/
24082406
everyByRight: typeof everyByRight;
24092407

2410-
/**
2411-
* Returns a "generic" array filled with `false` values.
2412-
*
2413-
* @param len - array length
2414-
* @returns output array
2415-
*
2416-
* @example
2417-
* var out = ns.falses( 3 );
2418-
* // returns [ false, false, false ]
2419-
*/
2420-
falses: typeof falses;
2421-
24222408
/**
24232409
* Returns a shallow copy of a portion of an array.
24242410
*
@@ -5727,18 +5713,6 @@ interface Namespace {
57275713
*/
57285714
toReversed: typeof toReversed;
57295715

5730-
/**
5731-
* Returns a "generic" array filled with `true` values.
5732-
*
5733-
* @param len - array length
5734-
* @returns output array
5735-
*
5736-
* @example
5737-
* var out = ns.trues( 3 );
5738-
* // returns [ true, true, true ]
5739-
*/
5740-
trues: typeof trues;
5741-
57425716
/**
57435717
* Applies a unary callback to elements in a two-dimensional nested input array and assigns results to elements in a two-dimensional nested output array.
57445718
*

lib/node_modules/@stdlib/array/base/falses/README.md

Lines changed: 0 additions & 108 deletions
This file was deleted.

lib/node_modules/@stdlib/array/base/falses/benchmark/benchmark.length.js

Lines changed: 0 additions & 95 deletions
This file was deleted.

lib/node_modules/@stdlib/array/base/falses/docs/repl.txt

Lines changed: 0 additions & 22 deletions
This file was deleted.

lib/node_modules/@stdlib/array/base/falses/docs/types/index.d.ts

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)