Skip to content

Commit

Permalink
Update lib/node_modules/@stdlib/math/base/special/nanmax/README.md
Browse files Browse the repository at this point in the history
Co-authored-by: Athan <[email protected]>
Signed-off-by: Gunj Joshi <[email protected]>
  • Loading branch information
gunjjoshi and kgryte authored Oct 23, 2024
1 parent 8f0bfc0 commit 0e3b29b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ int main( void ) {
int i;
for ( i = 0; i < 10; i++ ) {
v = stdlib_base_nanmax( x[i], y[i] );
printf( "x[ %d ]: %f, y[ %d ]: %f, nanmax( x[ %d ], y[ %d ] ): %f\n", i, x[ i ], i, y[ i ], i, i, v );
printf( "x[ %d ]: %lf, y[ %d ]: %lf, nanmax( x[ %d ], y[ %d ] ): %lf\n", i, x[ i ], i, y[ i ], i, i, v );
}
}
```
Expand Down

0 comments on commit 0e3b29b

Please sign in to comment.