Popularity
0.7
Declining
Activity
0.0
Stable
1
1
0
Monthly Downloads: 2
Programming language: Haskell
License: MIT License
simple-units alternatives and similar packages
Based on the "Numeric" category.
Alternatively, view simple-units alternatives based on common mentions on social networks and blogs.
-
sparse-linear-algebra
Numerical computation in native Haskell -
log-domain
This package provides log-domain floats, doubles and complex numbers for Haskell. -
tdigest
On-line accumulation of rank-based statistics such as quantiles and trimmed means -
limp
ideally, this will become a pure Haskell library for Linear Integer/Mixed Programming -
microlens-aeson
Lenses and Traversals for Aeson, based on Microlens. -
mighty-metropolis
The classic Metropolis sampling algorithm. -
hasty-hamiltonian
Speedy gradient-based traversal through parameter space. -
mwc-probability-transition
A Markov stochastic transition operator with logging -
numeric-ranges
DSL written in Haskell that provides a set of tools for working with both open and closed numeric intervals. -
nat-sized-numbers
Arbitrarily sized wraparound numeric types. Useful for testing -
approx
The library is created to allow for a easy-to-use reasonable way of emulating approx in Haskell. -
hmatrix-nlopt
High-level hmatrix-compatible bindings to NLOPT from Haskell -
gutenberg-fibonaccis
The first 1001 Fibonacci numbers, retrieved from the Gutenberg Project. -
affine-invariant-ensemble-mcmc
General-purpose sampling
Collect and Analyze Billions of Data Points in Real Time
Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
Promo
www.influxdata.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of simple-units or a related project?
README
simple-units
A Haskell library for simple arithmetic with SI units using type-checked dimensional analysis.
>>> let newton = kilogram .* meter ./ (second .* second)
>>> 23*newton
23.0 kg*m/s^2
>>> let g = 6.67408e-11 * newton .* (meter .* meter) ./ (kilogram .* kilogram)
>>> g -- gravitational constant
6.67408e-11 m^3/kg*s^2
>>> let gravity m1 m2 r = g .* (m1 * kilogram) .* (m2 * kilogram) ./ (r*meter .* r*meter)
>>> let earth_mass = 5.972e24 * kilogram
>>> let mars_mass = 6.417e23 * kilogram
>>> let earth_radius = 6371 * kilo meter
>>> let mars_radius = 3389.5 * kilo meter
>>> let weight_on_earth mass = gravity mass earth_mass earth_radius
>>> let weight_on_mars mass = gravity mass mars_mass mars_radius
>>> weight_on_earth (80 * kilogram)
785.5719790179963 kg*m/s^2
>>> weight_on_mars (80 * kilogram)
298.22370259533704 kg*m/s^2
>>> weight_on_mars 1 ./ weight_on_earth 1
0.3796261966575378 <adimensional>