You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dists/rayleigh/skewness/README.md
+93Lines changed: 93 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,6 +116,99 @@ for ( i = 0; i < 10; i++ ) {
116
116
117
117
<!-- /.examples -->
118
118
119
+
120
+
<!-- C interface documentation. -->
121
+
122
+
* * *
123
+
124
+
<sectionclass="c">
125
+
126
+
## C APIs
127
+
128
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
188
+
return min + ( v*(max-min) );
189
+
}
190
+
191
+
int main( void ) {
192
+
double sigma;
193
+
double y;
194
+
int i;
195
+
196
+
for ( i = 0; i < 25; i++ ) {
197
+
sigma = random_uniform( 0.0, 10.0 );
198
+
y = stdlib_base_dists_rayleigh_skewness( sigma );
199
+
printf( "σ: %lf, f(x;σ): %lf\n", sigma, y );
200
+
}
201
+
}
202
+
```
203
+
204
+
</section>
205
+
206
+
<!-- /.examples -->
207
+
208
+
</section>
209
+
210
+
<!-- /.c -->
211
+
119
212
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
0 commit comments