Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pow.adoc #383

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions Language/Functions/Math/pow.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,33 +8,33 @@ subCategories: [ "Math" ]



= pow(base, exponent)
= pow(base, esponente)


// OVERVIEW SECTION STARTS
[#overview]
--

[float]
=== Description
Calculates the value of a number raised to a power. `Pow()` can be used to raise a number to a fractional power. This is useful for generating exponential mapping of values or curves.
=== Descrizione
Calcola il valore di un numero elevato a potenza. `Pow()` può essere usato per elevare un numero a una potenza frazionaria. Questo è utile per generare mappature esponenziali di valori o curve.
[%hardbreaks]


[float]
=== Syntax
`pow(base, exponent)`
=== Sintassi
`pow(base, esponente)`


[float]
=== Parameters
`base`: the number (`float`)
=== Parametri
`base`: il numero (`float`)

`exponent`: the power to which the base is raised (`float`)
`esponente`: la potenza a cui si eleva la base (`float`)

[float]
=== Returns
The result of the exponentiation. (`double`)
=== Restituisce
Il risultato dell'esponenziale. (`double`)

--
// OVERVIEW SECTION ENDS
Expand All @@ -45,9 +45,9 @@ The result of the exponentiation. (`double`)
--

[float]
=== Example Code
=== Codice di esempio
// Describe what the example code is all about and add relevant code ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
See the (http://arduino.cc/playground/Main/Fscale[fscale]) function in the code library.
Vedi la funzione (http://arduino.cc/playground/Main/Fscale[fscale]) nella libreria dei codici.

--
// HOW TO USE SECTION ENDS
Expand All @@ -58,7 +58,7 @@ See the (http://arduino.cc/playground/Main/Fscale[fscale]) function in the code
--

[float]
=== See also
=== Vedi anche

[role="definition"]
* #DEFINITION# link:../../../variables/data-types/float[float]
Expand Down