We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d4560ce + 19d48b3 commit ba80963Copy full SHA for ba80963
Language/Functions/Math/pow.adoc
@@ -47,7 +47,13 @@ The result of the exponentiation. (`double`)
47
[float]
48
=== Example Code
49
// Describe what the example code is all about and add relevant code ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
50
-See the (http://arduino.cc/playground/Main/Fscale[fscale]) function in the code library.
+Calculate the value of x raised to the power of y:
51
+[source,arduino]
52
+----
53
+z = pow(x, y);
54
55
+See the (http://arduino.cc/playground/Main/Fscale[fscale]) sketch for a more complex example of the use of `map()`.
56
+[%hardbreaks]
57
58
--
59
// HOW TO USE SECTION ENDS
0 commit comments