forked from processing/processing-web-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexp.xml
More file actions
executable file
·45 lines (29 loc) · 797 Bytes
/
Copy pathexp.xml
File metadata and controls
executable file
·45 lines (29 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>exp()</name>
<category>Math</category>
<subcategory>Calculation</subcategory>
<usage>Web & Application</usage>
<example>
<image></image>
<code><![CDATA[
float v1 = exp(1.0);
println(v1); // Prints "2.7182817"
]]></code>
</example>
<description><![CDATA[Returns Euler's number <i>e</i> (2.71828...) raised to the power of the <b>value</b> parameter.]]></description>
<syntax><![CDATA[
exp(<kbd>value</kbd>)
]]></syntax>
<parameter>
<label>value</label>
<description><![CDATA[int or float: the exponent to raise <i>e</i> to]]></description>
</parameter>
<returns>float</returns>
<related>
</related>
<availability>1.0</availability>
<type>Function</type>
<partof>Core</partof>
<level>Extended</level>
</root>