Calculator

Modulul calculator

Modulul calculator vă permite să calculați expresii rapid. Acesta poate evalua expresii introduse ca text ce începe cu „=”. Introducerea = din modul de comandă va porni modul text direct cu = ca prefix pentru acces rapid.

Folosire de bază

  1. Activate Kupfer and type =

  2. Type in a mathematical expression using +,-,/,* (and ** for exponentiation)

  3. 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.

  • Pentru a calcula funcții trigonometrice pentru unghiuri, transformați măsura unghiurilor în radiani întâi:

    sin(radians(30)) -> 0.5
  • Ultimul rezultat este stocat sub numele de _ (un underscore, ca și în consola Python).