Skip to content

Commit 01ddffb

Browse files
Planeshifterkgryte
andauthored
docs: propagate recent fixes across stats/base/dists and lapack/base
PR-URL: stdlib-js#11999 Co-authored-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 2a2c905 commit 01ddffb

2 files changed

Lines changed: 7 additions & 13 deletions

File tree

  • lib/node_modules/@stdlib

lib/node_modules/@stdlib/lapack/base/zlacpy/docs/repl.txt

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,8 @@
4747
> var A = new {{alias:@stdlib/array/complex128}}( abuf );
4848
> var B = new {{alias:@stdlib/array/complex128}}( bbuf );
4949
> {{alias}}( 'row-major', 'all', 2, 2, A, 2, B, 2 );
50-
> var z = B.get( 0 );
51-
> {{alias:@stdlib/complex/float64/real}}( z )
52-
1.0
53-
> {{alias:@stdlib/complex/float64/imag}}( z )
54-
2.0
50+
> B
51+
<Complex128Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ]
5552

5653

5754
{{alias}}.ndarray( uplo, M, N, A, sa1, sa2, oa, B, sb1, sb2, ob )
@@ -106,15 +103,12 @@
106103
Examples
107104
--------
108105
> var abuf = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0 ];
109-
> var bbuf = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];
106+
> var bbuf = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];
110107
> var A = new {{alias:@stdlib/array/complex128}}( abuf );
111108
> var B = new {{alias:@stdlib/array/complex128}}( bbuf );
112-
> {{alias}}.ndarray( 'all', 2, 2, A, 2, 1, 1, B, 2, 1, 2 );
113-
> var z = B.get( 2 );
114-
> {{alias:@stdlib/complex/float64/real}}( z )
115-
3.0
116-
> {{alias:@stdlib/complex/float64/imag}}( z )
117-
4.0
109+
> {{alias}}.ndarray( 'all', 2, 2, A, 2, 1, 1, B, 2, 1, 0 );
110+
> B
111+
<Complex128Array>[ 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0 ]
118112

119113
See Also
120114
--------

lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ logEachMap( 'x: %0.4f, µ: %0.4f, β: %0.4f, ln(f(x;µ,β)): %0.4f', x, mu, beta
170170
#include "stdlib/stats/base/dists/gumbel/logpdf.h"
171171
```
172172

173-
#### stdlib_base_dists_gumbel_logcdf( x, mu, beta )
173+
#### stdlib_base_dists_gumbel_logpdf( x, mu, beta )
174174

175175
Evaluates the logarithm of the [probability density function][pdf] (PDF) for a [Gumbel][gumbel-distribution] distribution with parameters `mu` (location parameter) and `beta > 0` (scale parameter).
176176

0 commit comments

Comments
 (0)