Skip to content

docs: replace manual for loop in examples #6848

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

Merged
merged 5 commits into from
Apr 29, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update index.js
Signed-off-by: Harsh <149176984+hrshya@users.noreply.github.com>
  • Loading branch information
hrshya authored Apr 29, 2025
commit fefa9f96cbf47b1b3af84d0706aed1f1646c1c2e
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var cdf = require( './../lib' );
var opts = {
'dtype': 'float64'
};
var x = uniform( 10, 0, 20, opts );
var x = uniform( 10, 0.0, 20.0, opts );
var n = discreteUniform( 10, 0, 100, opts );
var p = uniform( 10, 0.0, 1.0, opts );

Expand Down