D3.js中的randomUniform()函数用于返回特定范围内的随机数。该范围由最大和最小数定义。
用法:
d3.randomUniform(min, max);
参数:它采用如上所述和以下所述的两个参数:
- min:它是随机数的最小值。
- max:它是可能的随机数的最大值。
返回值:它返回给定范围之间的随机数。
注意:每次执行时,代码的输出都会不同。
下面给出了上述函数的一些示例。
范例1:当给出最小和最大范围时。
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content=
"width=device-width, initial-scale=1.0">
</head>
<body>
<!-- Fetching from CDN of D3.js -->
<script type="text/javascript"
src="https://d3js.org/d3.v4.min.js">
</script>
<script>
// Random number between 1 and 10
console.log(d3.randomUniform(1, 10)())
console.log(d3.randomUniform(1, 10)())
console.log(d3.randomUniform(1, 10)())
console.log(d3.randomUniform(1, 10)())
console.log(d3.randomUniform(1, 10)())
console.log(d3.randomUniform(1, 10)())
console.log(d3.randomUniform(1, 10)())
</script>
</body>
</html>
输出:
范例2:当最小值和最大值相等时
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content=
"width=device-width, initial-scale=1.0">
</head>
<body>
<!-- Fetching from CDN of D3.js -->
<script type="text/javascript"
src="https://d3js.org/d3.v4.min.js">
</script>
<script>
// Random number less then 10 and
// greate than 0
console.log(d3.randomUniform(10)())
// Random number equal to 10
console.log(d3.randomUniform(10, 10)())
</script>
</body>
</html>
输出:每次执行代码时,输出可能会不同。
相关用法
- d3.js d3.map.set()用法及代码示例
- p5.js box()用法及代码示例
- p5.js nf()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP min( )用法及代码示例
- PHP max( )用法及代码示例
- PHP each()用法及代码示例
- p5.js nfc()用法及代码示例
- PHP key()用法及代码示例
- PHP pos()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- CSS var()用法及代码示例
- PHP end()用法及代码示例
- PHP next()用法及代码示例
- PHP pi( )用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 D3.js randomUniform() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。