We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c22f02b commit a481f6dCopy full SHA for a481f6d
lib/node_modules/@stdlib/stats/base/dists/pareto-type1/skewness/examples/c/example.c
@@ -21,8 +21,8 @@
21
#include <stdio.h>
22
23
static double random_uniform( const double min, const double max ) {
24
- double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
25
- return min + ( v*(max-min) );
+ double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
+ return min + ( v*(max-min) );
26
}
27
28
int main( void ) {
0 commit comments