Skip to content

Commit 36d5959

Browse files
authored
Update example.c
Signed-off-by: Gunj Joshi <[email protected]>
1 parent 0e3b29b commit 36d5959

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/nanmax/examples/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/nanmax/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ int main( void ) {
2727
int i;
2828
for ( i = 0; i < 10; i++ ) {
2929
v = stdlib_base_nanmax( x[ i ], y[ i ] );
30-
printf( "x[ %d ]: %f, y[ %d ]: %f, nanmax( x[ %d ], y[ %d ] ): %f\n", i, x[ i ], i, y[ i ], i, i, v );
30+
printf( "x[ %d ]: %lf, y[ %d ]: %lf, nanmax( x[ %d ], y[ %d ] ): %lf\n", i, x[ i ], i, y[ i ], i, i, v );
3131
}
3232
}

0 commit comments

Comments
 (0)