当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js randomLogNormal()用法及代码示例


d3.randomLogNormal()函数用于基于log-normal函数生成随机数。

用法:

d3.randomLogNormal(mu,sigma);

参数:该函数接受上述和以下所述的两个参数:

  • mu:它是随机变量的期望值。
  • sigma:该数字以给定的标准偏差sigma生成。

返回值:它返回一个函数。

注意:如果未提供mu和sigma,则默认情况下mu等于0,sigma等于1。



以下给出了上述函数的一些示例。

范例1:每次执行该函数时,输出可能会不同。

HTML

<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport" 
        content="width=device-width, initial-scale=1.0"> 
  <title>Document</title> 
</head> 
<style> 
</style> 
<body> 
  <!-- Fetching from CDN of D3.js -->
  <script type = "text/javascript" 
          src = "https://d3js.org/d3.v4.min.js"> 
  </script> 
  <script> 
    // Output may be different each time  
    // the function is run 
    console.log(d3.randomLogNormal(2,10)()) 
    console.log(d3.randomLogNormal(0,0)()) 
    console.log(d3.randomLogNormal(1,12)()) 
    console.log(d3.randomLogNormal(10,0)()) 
    console.log(d3.randomLogNormal(5,1)()) 
  </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"> 
  <title>Document</title> 
</head> 
<style> 
</style> 
<body> 
  <!-- Fetching from CDN of D3.js -->
  <script type = "text/javascript" 
          src = "https://d3js.org/d3.v4.min.js"> 
  </script> 
  <script> 
    // Output may be different each time  
    // the function is run 
    console.log(d3.randomLogNormal(2,10)(1)) 
    console.log(d3.randomLogNormal(0,0)(2)) 
    console.log(d3.randomLogNormal(1,12)(3)) 
    console.log(d3.randomLogNormal(10,0)(0)) 
    // When mu and sigma is not given 
    console.log(d3.randomLogNormal()()) 
  </script> 
</body> 
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 D3.js randomLogNormal() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。