-
We use Decimal instead of float due to a requirement for exact representation of amounts when using floating point arithmetic. We would like to use this package with Decimal amounts, and potentially o…
-
First of all: Extremely cool project! (Found you on reddit)
I am unsure what the `--precision` flag does. I tried to running `kalker --precision 1000`, however kalker did not output what I expected…
-
Not sure if it's outside of component's scope.
However let's clear some things with NS.
Consider following code to reproduce behaviour (a little bit modified `NumericStepper.page.tsx` example):
``…
-
DBI should offer some type of plugin system that other packages can build upon by offering implementations for representing some of the more exotic data types in R. Throughout the DBI packages, there …
nbenn updated
3 years ago
-
I'm trying to run the following program
```
from sympy import *
from sympy.abc import *
def eliminate_time_variable(r):
time_dependent_equation = -x**2 - (-8*t + z)**2 - (t**2 + y)**2 + r**2
dif…
-
I want to use GMP or maybe another library for arbitrary precision. The user should be able to set the precision because Julia morphings can transform the plane so much that extra precision is needed …
-
@jschall once proposed to add those to the set of native DSDL types:
> Can we use a floating point standard that matches IEEE 754 for 16, 32, 64 and 128-bit floats, but also provides for arbitrary …
-
Following this suggestion ( http://stackoverflow.com/a/6879889 ) I've tried to use sympy to (numerically) get the eigenvalues of a matrix. Here's some code that reproduces (some of) my problems. It's …
-
_Originally opened by @rudolph9 in https://github.com/cuelang/cue/issues/253_
## Background
JSON has no concepts of `float` or `int` only `number`. The current behavior of cuelang has `float` and …
-
I'm trying to calculate tomorrow's date.
The approach I'm taking is as follows:
adate = adafruit_datetime.date (2022, 03, 31)
delta = adafruit_datetime.timedelta(days=1)
bdate = adate + delta
I…