-
Hi, Phil.
I want to impute values in variables with multiple imputations.
So I tried to use `score dat (original NAperson NAitem for(i in 1:20)
+ dat[NAperson[i], NAitem[i]] (mod scores TE…
-
Administrivia: we're currently lacking a _Contents.m_ file, which contains the information people should see when they type
```
>> ver('chebfun')
```
Perhaps we should hold off on this right now, si…
-
I encountered the following problem with the mean method of RAvgArray:
```
import vegas
import numpy
f = lambda x: numpy.array([numpy.dot(x,x), numpy.dot(x,x)**2])
integ = vegas.Integrator([[0.0, 1.0…
-
@zblz What do you think about using [astropy.units.Quantity](http://docs.astropy.org/en/latest/api/astropy.units.quantity.Quantity.html) in `gammafit`?
I think it would be nice to use it ... this cou…
cdeil updated
10 years ago
-
bc.. >>> from mpmath import secant
> > > f = lambda x: (x-1)**100
> > > secant(f, 0)
> > > mpf('0.33989945043882264')
> > > secant(f, 0, 3)
> > > mpf('-4.7331654313260708e-30')
> > > g = lambda x: x*…
-
This is mostly for @jrquirk but if anyone else has any ideas about what's going on then do get involved.
Currently, nothing seems to be getting fitted with pedestals, amplitudes and times O(10^-312),…
-
bc.. mpf and mpc are a lot slower than python floats and comlpexes. Sometimes
I'd like to take advantage of all the nice algorithms in mpmath (like
special functions, ODE solvers), but I'd like them t…
-
I'm trying to do something along the lines of this in Python:
``` python
class pyb.Gpio(object):
INPUT = 0
OUTPUT = 1
PULL_NONE = 0
def function():
...
```
I tried this:
``` …
-
This is a summary of the discussions in #7 and #4 and intended to reflect the latest decisions about the API.
Each (adaptive) solver accepts 3 arguments (PR in #14 )
- `F`: the RHS of the ODE `dy/dt …
acroy updated
10 years ago
-
Our `for` loop is slow:
- `for (i in min..max)` can be optimized to `for (int i=min; i