Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 6 additions & 12 deletions lib/node_modules/@stdlib/lapack/base/zlacpy/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
<Complex128Array>[ 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 )
Expand Down Expand Up @@ -106,15 +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 );
> var z = B.get( 2 );
> {{alias:@stdlib/complex/float64/real}}( z )
3.0
> {{alias:@stdlib/complex/float64/imag}}( z )
4.0
> {{alias}}.ndarray( 'all', 2, 2, A, 2, 1, 1, B, 2, 1, 0 );
> B
<Complex128Array>[ 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0 ]

See Also
--------
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down