A pretty TUI scientific calculator. https://daisy.betalupi.com
 
 
 
 
 
 
Go to file
Mark 578072a7e7
Updated TODO
2023-08-02 09:51:49 -07:00
.github/workflows Action version 2023-04-10 16:04:50 -07:00
buildscript Added more constants 2023-08-02 08:49:20 -07:00
misc Modified banner 2023-04-02 22:06:33 -07:00
src Added unit support to trig functions 2023-08-02 09:51:36 -07:00
.editorconfig Edited actions 2023-04-10 14:07:04 -07:00
.gitignore Updated gitignore 2023-07-28 21:51:20 -07:00
Cargo.lock Changed executable name, bumped version 2023-08-02 09:17:42 -07:00
Cargo.toml Changed executable name, bumped version 2023-08-02 09:17:42 -07:00
LICENSE Added license 2023-03-27 10:55:20 -07:00
PKGBUILD Updated PKGBUILD 2023-08-01 12:32:58 -07:00
README.md Updated README 2023-08-02 09:38:58 -07:00
TODO.md Updated TODO 2023-08-02 09:51:49 -07:00

README.md

A high-precision scientific calculator with support for units, derivatives, and more.

Many features are missing, this is still under development.

📦 Installation

  • Arch: yay -S daisy
  • Debian: coming soon

From source: cargo build --release
Binary will be in target/release/daisy

📹 Screenshot

🛠️ Features

  • Open-source
  • Extremely high precision
    • Uses a rational datatype when possible, and a high-precision float when not.
  • Pretty printing in prompt (with special substitutions)
  • Supports many physical units, with metric and binary prefixes
  • Supports exponential notation
  • Clear syntax, parsed input is always re-printed as a sanity check.
  • Useful, detailed error messages

📑 Usage

All documentation is built into the prompt. Use the help command to view it.

Evaluate expressions:

  • Basic math: 103 / 2 * 43
  • Functions: sqrt(1.4^3 + 4) * sin(pi / 4)
  • Scientific notation: 1.2e12 * 1e-5

Physical units

  • Unit operations: 2 day + 1 hour
  • Unit conversion: 2 day + 1 hour to minutes
  • Compound units: 10 m/s to mph
  • Conversion errors: 1 liter to volt

Varables

  • Previous answer: ans + 2
  • Variable assignment: a = 143

🌹 Additional Notes

Unit Conversion

The conversion operator to converts its left argument to the unit of its right argument, ignoring its value. For example, 5m to mi and 5m to 10mi are identical.

Multiplication Order

Implicit multiplication has a higher priority than division. pi/2 radians will parse as pi/(2 radians). Type (pi/2) radians or pi/2 * radians to get 90 degrees.

Inline Assignment

The assignment operator = returns its value, and can thus be used inside of an expression. For example, (a = 2) + 2 assigns a to 2 and returns 4. This only works for variable assignment.