Calculator
Plugin calcolatrice
Il plugin calcolatrice permette di calcolare espressioni velocemente. Può valutare espressioni inserite come testo che iniziano con "=". Digitando = in modalità comando si entra direttamente in modalità testo con il prefisso = per l'accesso veloce.
Uso di base
Activate Kupfer and type =
Type in a mathematical expression using +,-,/,* (and ** for exponentiation)
Press Return to get the result.
Notes
The Calculator uses python's math and complex math modules, and parses expressions as Python expressions. You may use common mathematical functions, such as sqrt, sin, exp and log; the command =help will show a list of all defined functions and constants.
Notice that the power operator in Python is double stars, for example =3**3 will evaluate to 27.
-
Per calcolare le funzioni trigonometriche per gli angoli, prima convertire in radianti:
sin(radians(30)) -> 0.5
L'ultimo risultato è memorizzato con il nome _ (un trattino basso, così come avviene in una console di Python).