exp()函数将n的值(任意数字)返回到欧拉数e(2.71828…),该数字升为幂n(e^n)。
用法:
exp(n)
参数:此方法接受单个参数n,即数字值。
返回值:它返回给定编号的(e^n)。
范例1:
Javascript
function setup() {
// Create Canvas of size 270*80
createCanvas(600, 300);
}
function draw() {
// Set the background color
background(220);
// Initialize the parameter and
// return the value of the function
let n = exp(1.1)
let m = exp(3.3)
// Set the size of text
textSize(16);
text( "Result in Eular number will be:" + n, 50, 50);
text( "Result in Eular number will be:" + m, 50, 80);
}
输出:
范例2:
Javascript
function setup() {
// Create Canvas of size 270*80
createCanvas(600, 500);
}
function draw() {
let x, m;
let step = 50
// Set the background color
background(220);
// Initialize the parameter and return
// the value of the function
// For loop is set from numbert 0 to 10.
for( x = 0; x <= 10; x++) {
// The return value of exp() function
m = exp(x)
text( "Result for " + x +
":" + m, 50, step);
step = step + 30;
}
// Set the size of text
textSize(17);
// Set the text color
fill(color('blue'));
}
输出:
相关用法
- JavaScript Math exp()用法及代码示例
- PHP exp()用法及代码示例
- Golang complx.Exp()用法及代码示例
- Lodash _.method()用法及代码示例
- Node.js Http2ServerRequest.method用法及代码示例
- Node.js http.IncomingMessage.method用法及代码示例
- Javascript dataView.getInt16()用法及代码示例
- Javascript RegExp toString()用法及代码示例
- Node.js URLSearchParams.has()用法及代码示例
- JavaScript Math cosh()用法及代码示例
- HTML DOM isEqualNode()用法及代码示例
- JavaScript Date toLocaleTimeString()用法及代码示例
- Node.js crypto.createHash()用法及代码示例
- Node.js writeStream.clearLine()用法及代码示例
- Node.js fs.link()用法及代码示例
- Java ArrayList toArray()用法及代码示例
- JavaScript Math random()用法及代码示例
- JavaScript Math round()用法及代码示例
- Javascript toString()用法及代码示例
- Javascript Number.isInteger( )用法及代码示例
注:本文由纯净天空筛选整理自_sh_pallavi大神的英文原创作品 p5.js exp() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。