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 8b07319 commit 2c7f2bbCopy full SHA for 2c7f2bb
1 file changed
lib/node_modules/@stdlib/stats/base/ndarray/dmidrange/examples/c/example.c
@@ -63,11 +63,11 @@ int main( void ) {
63
// Define a list of ndarrays:
64
const struct ndarray *arrays[] = { x };
65
66
- // Compute the midrange value:
+ // Compute the mid-range:
67
double v = stdlib_stats_dmidrange( arrays );
68
69
// Print the result:
70
- printf( "midrange: %lf\n", v );
+ printf( "mid-range: %lf\n", v );
71
72
// Free allocated memory:
73
stdlib_ndarray_free( x );
0 commit comments