Skip to content

Commit 85211e1

Browse files
authored
Update README.md
Signed-off-by: yuvi-mittal <[email protected]>
1 parent c1e1323 commit 85211e1

File tree

1 file changed

+2
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/planck/entropy

1 file changed

+2
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/planck/entropy/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ for ( i = 0; i < lambda.length; i++ ) {
148148

149149
#### stdlib_base_dists_planck_entropy( lambda )
150150

151-
Evaluates the entropy for planck distribution.
151+
Returns the [differential entropy][entropy] of a Planck distribution with shape parameter `lambda` (in [nats][nats]).
152152

153153
```c
154154
double out = stdlib_base_dists_planck_entropy( 1.5 );
@@ -190,6 +190,7 @@ static double random_uniform( const double min, const double max ) {
190190
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
191191
return min + ( v*(max-min) );
192192
}
193+
193194
int main( void ) {
194195
double lambda;
195196
double y;

0 commit comments

Comments
 (0)