Getting started
“Notes calculator” is a notepad for working through problems that involve calculations. Type a calculation in the input field (left side), and the result will be displayed on the right side.
(75 + 25) x 3 | 300100 + 50% | 15020% of 40 | 8
100 dollars in euro | €85.3960 degree in radians | 1,05 rad1 kg in g | 1.000 g1 day in seconds | 86.400 seconds
// You can also use variables: <-- this is a comment, which is ignoreddiscount = 10% | 10%cost = 550€ | €550cost - discount | €495Calculations are performed automatically as you type, and the result is updated in real-time.
What’s new
Section titled “What’s new”- Line References — refer to an earlier line by its number, e.g.
line1. - User-Defined Functions — define your own functions like
f(x) = 2*x + 1. - Number Bases & Scientific Notation — hex, binary, octal, and scientific literals plus
in hex/as scientificpostfixes.