From acada68d656e81bfda93fba878d960a6c9c5c5f6 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 8 May 2026 13:10:34 +0000 Subject: [PATCH 1/3] docs: correct C API heading function name in `stats/base/dists/gumbel/logpdf` Propagates fix from ff7716f81 ("docs: correct C API heading function name in `stats/base/dists/exponential/logcdf`") to a sibling distribution README where the C API level-4 heading carried the wrong function name. --- .../@stdlib/stats/base/dists/gumbel/logpdf/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md b/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md index c563d0caee12..1890500d4177 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md @@ -170,7 +170,7 @@ logEachMap( 'x: %0.4f, µ: %0.4f, β: %0.4f, ln(f(x;µ,β)): %0.4f', x, mu, beta #include "stdlib/stats/base/dists/gumbel/logpdf.h" ``` -#### stdlib_base_dists_gumbel_logcdf( x, mu, beta ) +#### stdlib_base_dists_gumbel_logpdf( x, mu, beta ) 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). From 6d3bbd98ff428dae3046ccfdc1143a7fccd87ea6 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 8 May 2026 13:10:40 +0000 Subject: [PATCH 2/3] docs: improve doctests for complex number typed arrays in `lapack/base/zlacpy` Propagates fix from ee5eced0 ("docs: improve doctests for complex number typed arrays in `blas/base/wasm`") to a sibling package whose REPL doctests used the same verbose `view.get(i)` / `real(z)` / `imag(z)` unwrap idiom; replaced with a direct `> view` print of the full Complex128Array. --- .../@stdlib/lapack/base/zlacpy/docs/repl.txt | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/lib/node_modules/@stdlib/lapack/base/zlacpy/docs/repl.txt b/lib/node_modules/@stdlib/lapack/base/zlacpy/docs/repl.txt index 131b8e15583b..d728f27708b6 100644 --- a/lib/node_modules/@stdlib/lapack/base/zlacpy/docs/repl.txt +++ b/lib/node_modules/@stdlib/lapack/base/zlacpy/docs/repl.txt @@ -47,11 +47,8 @@ > var A = new {{alias:@stdlib/array/complex128}}( abuf ); > var B = new {{alias:@stdlib/array/complex128}}( bbuf ); > {{alias}}( 'row-major', 'all', 2, 2, A, 2, B, 2 ); - > var z = B.get( 0 ); - > {{alias:@stdlib/complex/float64/real}}( z ) - 1.0 - > {{alias:@stdlib/complex/float64/imag}}( z ) - 2.0 + > B + [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] {{alias}}.ndarray( uplo, M, N, A, sa1, sa2, oa, B, sb1, sb2, ob ) @@ -110,11 +107,8 @@ > var A = new {{alias:@stdlib/array/complex128}}( abuf ); > var B = new {{alias:@stdlib/array/complex128}}( bbuf ); > {{alias}}.ndarray( 'all', 2, 2, A, 2, 1, 1, B, 2, 1, 2 ); - > var z = B.get( 2 ); - > {{alias:@stdlib/complex/float64/real}}( z ) - 3.0 - > {{alias:@stdlib/complex/float64/imag}}( z ) - 4.0 + > B + [ 0.0, 0.0, 0.0, 0.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0 ] See Also -------- From 27c8c414d1cc587982afffb7f4e06f544cafba58 Mon Sep 17 00:00:00 2001 From: Athan Date: Fri, 8 May 2026 20:43:53 -0700 Subject: [PATCH 3/3] style: resolve lint errors Signed-off-by: Athan --- lib/node_modules/@stdlib/lapack/base/zlacpy/docs/repl.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/lapack/base/zlacpy/docs/repl.txt b/lib/node_modules/@stdlib/lapack/base/zlacpy/docs/repl.txt index d728f27708b6..993531f42e5d 100644 --- a/lib/node_modules/@stdlib/lapack/base/zlacpy/docs/repl.txt +++ b/lib/node_modules/@stdlib/lapack/base/zlacpy/docs/repl.txt @@ -103,12 +103,12 @@ Examples -------- > var abuf = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0 ]; - > 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 ]; + > var bbuf = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]; > var A = new {{alias:@stdlib/array/complex128}}( abuf ); > var B = new {{alias:@stdlib/array/complex128}}( bbuf ); - > {{alias}}.ndarray( 'all', 2, 2, A, 2, 1, 1, B, 2, 1, 2 ); + > {{alias}}.ndarray( 'all', 2, 2, A, 2, 1, 1, B, 2, 1, 0 ); > B - [ 0.0, 0.0, 0.0, 0.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0 ] + [ 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0 ] See Also --------