-
-
Notifications
You must be signed in to change notification settings - Fork 795
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: replace manual for
loop in examples
#6472
Conversation
Coverage Report
The above coverage report was generated for the changes in this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
for ( i = 0; i < 100; i++ ) { | ||
console.log( 'logf( %d, %d ) = %d', x[ i ], b[ i ], logf( x[ i ], b[ i ] ) ); | ||
} | ||
logEachMap( 'logf( %0.4f, %0.4f ) = %0.4f', x, b, logf ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@stdlib-bot This should become
logEachMap( 'logf( %d, %d ) = %0.4f', x, b, logf );
since we don't want to display decimal points for integers.
for ( i = 0; i < 100; i++ ) { | ||
console.log( 'logf( %d, %d ) = %d', x[ i ], b[ i ], logf( x[ i ], b[ i ] ) ); | ||
} | ||
logEachMap( 'logf( %0.4f, %0.4f ) = %0.4f', x, b, logf ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@stdlib-bot This should become
logEachMap( 'logf( %d, %d ) = %0.4f', x, b, logf );
since we don't want to display decimal points for integers.
x = round( randu() * 100.0 ); | ||
console.log( 'log10(%d) = %d', x, log10( x ) ); | ||
} | ||
logEachMap( 'log10(%0.4f) = %0.4f', x, log10 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@stdlib-bot This should become
logEachMap( 'log10(%d) = %0.4f', x, log10 );
since we don't want to display decimal points for integers.
x = round( randu() * 100.0 ); | ||
console.log( 'log10(%d) = %d', x, log10( x ) ); | ||
} | ||
logEachMap( 'log10(%0.4f) = %0.4f', x, log10 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@stdlib-bot This should become
logEachMap( 'log10(%d) = %0.4f', x, log10 );
since we don't want to display decimal points for integers.
x = round( randu() * 100.0 ); | ||
console.log( 'log2(%d) = %d', x, log2( x ) ); | ||
} | ||
logEachMap( 'log2(%0.4f) = %0.4f', x, log2 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@stdlib-bot This should become
logEachMap( 'log2(%d) = %0.4f', x, log2 );
since we don't want to display decimal points for integers.
x = round( randu() * 100.0 ); | ||
console.log( 'log2(%d) = %d', x, log2( x ) ); | ||
} | ||
logEachMap( 'log2(%0.4f) = %0.4f', x, log2 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@stdlib-bot This should become
logEachMap( 'log2(%d) = %0.4f', x, log2 );
since we don't want to display decimal points for integers.
Resolves none .
Description
This pull request:
math/base/special/log2
,math/base/special/log10
,math/base/special/logf
,math/base/special/logit
,math/base/special/maxabs
andmath/base/special/maxabsf
packages.Related Issues
This pull request:
Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers