4,734 reputation
11635
bio website
location Germany
age
visits member for 4 years, 4 months
seen May 16 at 14:57
stats profile views 354

My motto: "Think global, drink regional"
— Schierlinger Pils, Bavaria


May
16
revised Incremental PCA
- old comment
May
11
revised How to calculate classification error rate
tag confusion-matrix
May
11
revised Using Principal Components Analysis (PCA) on binary data
tag svd
Apr
29
revised Python 4D linear interpolation on a rectangular grid
link to Intergrid on SO
Apr
29
comment Changing default encoding of python?
That's now ianbicking.org/illusive-setdefaultencoding.html
Apr
27
revised scipy: fast interpolation of regularly sampled 3D data with different intervals in x,y, and z
code, not link
Apr
27
answered Xcode 4.6.2 not getting downloaded from mac app store
Apr
27
comment Xcode 4.4 Command Line Tools
After login on developer.apple.com/xcode, register Q+A (stupid) gave "Safari can't open, too many redirects trying to open developer.apple.com/donwloads/index.action";.
Apr
26
awarded  Good Answer
Apr
25
answered scipy: fast interpolation of regularly sampled 3D data with different intervals in x,y, and z
Apr
25
comment Type casting error with numpy.take
Another use case is float -> int indices, y.take( xfloat.astype(int), mode="clip" ): unsafe without astype but common (well, in c) and useful.
Apr
24
revised Non-linear programming library in C++
+ github link
Apr
22
comment curve fitting by a sum of gaussian with scipy
Although Jaime's good answer shows a poor fit for your data, see PyMix under separate-mixture-of-gaussians-in-python.
Apr
19
awarded  scipy
Apr
9
comment What classes and methods are not in a python test suite, statically?
@delnan, because static analysis is fast, no runs at all, and looks easy. What's "more accurate" than "fgrep -w Classname test/*py" is nil ?
Apr
9
comment What classes and methods are not in a python test suite, statically?
Thanks, but that looks dynamic ?
Apr
9
asked What classes and methods are not in a python test suite, statically?
Apr
8
revised How do I slice a Numpy array up to a boundary?
s/range/radius, no kw
Apr
8
answered How do I slice a Numpy array up to a boundary?
Apr
6
comment Constrained smoothing in R
Can you add short flat segments at the ends, e.g. [1 1] -- [1.001 1] and [last - .001 0] -- [last 0] ?