User David Cournapeau - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T17:49:49Zhttp://stackoverflow.com/feeds/user/11465http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1713335/peak-finding-algorithm-for-python-scipy/1807394#18073941Answer by David Cournapeau for Peak-finding algorithm for Python/SciPyDavid Cournapeau2009-11-27T08:20:25Z2009-11-30T12:01:42Z<p>Detecting peaks in a spectrum in a reliable way has been studied quite a bit, for example all the work on sinusoidal modelling for music/audio signals in the 80ies. Look for "Sinusoidal Modeling" in the literature.</p>
<p>If your signals are as clean as the example, a simple "give me something with an amplitude higher than N neighbours" should work reasonably well. If you have noisy signals, a simple but effective way is to look at your peaks in time, to track them: you then detect spectral lines instead of spectral peaks. IOW, you compute the FFT on a sliding window of your signal, to get a set of spectrum in time (also called spectrogram). You then look at the evolution of the spectral peak in time (i.e. in consecutive windows).</p>
http://stackoverflow.com/questions/1565731/strange-numpy-float96-behaviour/1797862#17978620Answer by David Cournapeau for Strange numpy.float96 behaviourDavid Cournapeau2009-11-25T15:51:13Z2009-11-25T15:51:13Z<p>The problem is caused by incompatibilities between mingw compiler (the one used for the official numpy binary) and the MS runtime (the one printf is coming from).</p>
<p>MS compiler consider long double and double to be equivalent types, and so does the MS C runtime (printf included). Mingw, for some reason, define long double as big enough to hold 80 bits extended precision numbers, but of course the MS printf does not know about it, and cannot print long double correctly.</p>
<p>We circumvented around some problems by using our own formatting functions, but I think the real fix is to force long double to be a synonym to double when built with mingw. This will be done for numpy 1.5.0, I think.</p>
http://stackoverflow.com/questions/21934/why-java-and-python-garbage-collection-methods-are-different/1604520#16045200Answer by David Cournapeau for Why Java and Python garbage collection methods are different?David Cournapeau2009-10-22T01:11:46Z2009-10-22T01:11:46Z<p>Late in the game, but I think one significant rationale for RC in python is its simplicity. See this <a href="http://74.125.153.132/search?q=cache%3AbbQj9fetaoUJ%3Amail.python.org/pipermail/python-list/2005-October/345521.html+martelli+garbage+collector&cd=5&hl=en&ct=clnk&client=safari" rel="nofollow">email by Alex Martelli</a>, for example.</p>
<p>(I could not find a link outside google cache, the email date from 13th october 2005 on python list).</p>
http://stackoverflow.com/questions/1020453/whats-the-point-of-inheritance-in-python/1020871#10208716Answer by David Cournapeau for What’s the point of inheritance in Python?David Cournapeau2009-06-20T03:31:25Z2009-10-15T22:10:37Z<p>I think that it is very difficult to give a meaningful, concrete answer with such abstract examples...</p>
<p>To simplify, there are two types of inheritance: interface and implementation. If you need to inherit the implementation, then python is not so different than statically typed OO languages like C++. </p>
<p>Inheritance of interface is where there is a big difference, with fundamental consequences for the design of your software in my experience. Languages like Python does not force you to use inheritance in that case, and avoiding inheritance is a good point in most cases, because it is very hard to fix a wrong design choice there later. That's a well known point raised in any good OOP book.</p>
<p>There are cases where using inheritance for interfaces is advisable in Python, for example for plug-ins, etc... For those cases, Python 2.5 and below lacks a "built-in" elegant approach, and several big frameworks designed their own solutions (zope, trac, twister). Python 2.6 and above has <a href="http://www.python.org/dev/peps/pep-3119/#abcs-vs-duck-typing" rel="nofollow">ABC classes to solve this</a>.</p>
http://stackoverflow.com/questions/734256/is-there-a-way-to-git-svn-dcommit-from-a-cloned-git-svn-repository/1530854#15308540Answer by David Cournapeau for Is there a way to "git svn dcommit" from a cloned git-svn repository :David Cournapeau2009-10-07T10:46:33Z2009-10-07T10:46:33Z<p>It is possible, but you have to set things up a bit differently. Here is how we do it on <a href="http://projects.scipy.org/numpy/wiki/GitMirror" rel="nofollow">numpy</a> - the repo was created with <a href="http://github.com/pv/git-svn-automirror" rel="nofollow">git-svn-automirror</a></p>
<p>You can look at the function _git_update_mirror to see how to do it manually</p>
http://stackoverflow.com/questions/1517129/python-how-to-install-scipy-on-64-bit-windows/1523358#15233582Answer by David Cournapeau for Python: how to install SciPy on 64 bit Windows?David Cournapeau2009-10-06T02:47:52Z2009-10-06T02:47:52Z<p>Short answer: windows 64 support is still work in progress at this time. The superpack will certainly not work on a 64 bits python (but it should work fine on a 32 bits python, even on windows 64).</p>
<p>The main issue with windows 64 is that building with mingw-w64 is not stable at this point: it may be our's (numpy devs) fault, python's fault or mingw-w64. Most likely a combination of all those :). So you have to use proprietary compilers: anything other than MS compiler crashes numpy randomly; for the fortran compiler, ifort is the one to use. As of today, both numpy and scipy source code can be compiled with VS 2008 and ifort (all tests passing), but building it is still quite a pain, and not well supported by numpy build infrastructure.</p>
http://stackoverflow.com/questions/1011806/is-it-necessary-to-multiply-by-sizeof-char-when-manipulating-memory/1011830#101183013Answer by David Cournapeau for Is it necessary to multiply by sizeof( char ) when manipulating memory?David Cournapeau2009-06-18T09:48:26Z2009-10-06T02:36:43Z<p>By definition, sizeof(char) is always equal to 1. One byte is the size of character in C, whatever the numbers of bits in a byte there is (8 on common desktop CPU).</p>
<p>The typical example where one byte is not 8 bits is the <a href="http://en.wikipedia.org/wiki/36-bit" rel="nofollow">PDP-10</a> and other old, mini-computer-like architectures with 9/36 bits bytes. But bytes which are not 2^N are becoming extremely uncommon I believe</p>
<p>Also, I think this is better style:</p>
<pre><code>char* buf1;
double* buf2;
buf1 = malloc(sizeof(*buf1) * N);
buf2 = malloc(sizeof(*buf2) * N);
</code></pre>
<p>because it works whatever the pointer type is.</p>
http://stackoverflow.com/questions/1036686/is-it-a-good-idea-to-use-ieee754-floating-point-nan-for-values-which-are-not-set/1040107#10401072Answer by David Cournapeau for Is it a good idea to use IEEE754 floating point NaN for values which are not set?David Cournapeau2009-06-24T18:31:29Z2009-10-06T02:34:15Z<p>I think it is a bad idea in general. One thing to keep in mind is that most CPU treat Nan much slower then "usual" float. And it is hard to guarantee you will never have Nan in usual settings. My experience in numerical computing is that it often brings more trouble than it worths.</p>
<p>The right solution is to avoid encoding "absence of value" in the float, but to signal it in another way. That's not always practical, though, depending on your codebase.</p>
http://stackoverflow.com/questions/1498155/performance-of-python-worth-the-cost/1502231#15022310Answer by David Cournapeau for Performance of Python worth the cost?David Cournapeau2009-10-01T06:33:58Z2009-10-01T06:33:58Z<p>From your description, speed should not be much of a concern (and you can use C, cython, whatever you want to make it faster), but memory would be. For environments with 64 Mb max (where the OS and all should fit as well, right ?), I think there is a good chance that python may not be the right tool for target deployment.</p>
<p>If you have non trivial logic to handle, I would still prototype in python, though.</p>
http://stackoverflow.com/questions/1500564/cprofile-and-python-finding-the-specific-line-number-that-code-spends-most-time/1502200#15022000Answer by David Cournapeau for cProfile and Python: Finding the specific line number that code spends most time onDavid Cournapeau2009-10-01T06:25:22Z2009-10-01T06:25:22Z<p>There is a <a href="http://pypi.python.org/pypi/line%5Fprofiler/1.0b2" rel="nofollow">line profiler</a> in python written by Robert Kern.</p>
http://stackoverflow.com/questions/1154357/makefile-not-working-with-cygwin/1154369#11543693Answer by David Cournapeau for Makefile not working with cygwinDavid Cournapeau2009-07-20T15:53:48Z2009-09-23T10:00:09Z<p>You should install cygwin in C:\, not in C:\Program Files\ - the latter often causes problems because of the space, as is the case here.</p>
http://stackoverflow.com/questions/1453767/prevent-cl-exe-from-printing-the-compiled-source-file1Prevent cl.exe from printing the compiled source fileDavid Cournapeau2009-09-21T10:08:44Z2009-09-21T13:49:42Z
<p>I use the MS compiler from the command line (VS 2008), and whenever it compiles one source file, it prints the compiled source file. Is there a way to avoid this useless print ?</p>
http://stackoverflow.com/questions/1318799/tool-to-enforce-python-code-style-standards/1318812#13188129Answer by David Cournapeau for Tool to enforce python code style/standardsDavid Cournapeau2009-08-23T15:30:58Z2009-08-23T15:30:58Z<p><a href="http://www.logilab.org/857" rel="nofollow">pylint</a> and <a href="http://www.divmod.org/trac/wiki/DivmodPyflakes" rel="nofollow">pyflakes</a> would be a good start.</p>
<p>pylint in particular is very configurable, and you can enforce quite a few things with it.</p>
http://stackoverflow.com/questions/1304737/how-is-array-memory-allocated-and-freed-in-c-and-c/1304764#13047640Answer by David Cournapeau for How is *array* memory allocated and freed in C and C++?David Cournapeau2009-08-20T08:28:16Z2009-08-20T08:28:16Z<p>they fundamentally use the same techniques for allocation - certainly, on most implementations, the default C++ runtime new will not be much faster than malloc. One of the big difference is that you can rewrite allocator in C++ so that you can use allocators optimized to your expected memory behavior - you can do that in C as well of course, but it is a bit more cumbersome syntax-wise.</p>
http://stackoverflow.com/questions/1258550/why-on-earth-would-anyone-use-strncpy-instead-of-strcpy/1258708#12587084Answer by David Cournapeau for Why on earth would anyone use strncpy instead of strcpy?David Cournapeau2009-08-11T06:27:20Z2009-08-11T06:27:20Z<p>strncpy is NOT safer than strcpy, it just trades one type of bugs with another. In C, when handling C strings, you need to know the size of your buffers, there is no way around it. strncpy was justified for the directory thing mentioned by others, but otherwise, you should never use it:</p>
<ul>
<li>if you know the length of your string and buffer, why using strncpy ? It is a waste of computing power at best (adding useless 0)</li>
<li>if you don't know the lengths, then you risk silently truncating your strings, which is not much better than a buffer overflow</li>
</ul>
http://stackoverflow.com/questions/1248923/why-isnt-c-used-in-web-developement/1248967#12489673Answer by David Cournapeau for Why isn't C++ used in Web-Developement ?David Cournapeau2009-08-08T14:11:00Z2009-08-08T14:11:00Z<p>For one thing, the java and C# libraries/frameworks are much, much bigger than C++. "Standard" C++ has almost nothing interesting for web development. THe standard C++ library does not even have the slightest thing related to network, threading or portable file system access. I doubt C++ speed is much of a factor: java and C# are generally as fast as C++ in server settings (where you can use the full JIT capabilities of the runtimes, because starting times and co are of no concern). </p>
http://stackoverflow.com/questions/1245905/question-about-include-directory-order-in-g/1245931#12459311Answer by David Cournapeau for Question about include directory order in g++David Cournapeau2009-08-07T17:13:12Z2009-08-07T17:13:12Z<p>If you include the file with "" instead of <>, the header should be first looked in the same directory as the file including it.</p>
<p>But if possible, renaming the file is much better IMHO: it will avoid problems if files are moved, when you change your build system, etc... The "" vs <> is compiler dependent, also (it is NOT mandated by the C standard to behave as g++ does).</p>
http://stackoverflow.com/questions/1242705/performance-of-2-dimensional-array-vs-1-dimensional-array/1244062#12440620Answer by David Cournapeau for Performance of 2-dimensional array vs 1-dimensional arrayDavid Cournapeau2009-08-07T10:36:51Z2009-08-07T10:36:51Z<p>As said by other, the difference really is how you access your items: what matters if how your items are layout in the memory, which is linear, at least on common architectures. So all you have really is 1d array, the 2d, etc... is "just" a convenience, and a reasonable compiler should optimize the indexing - but in practice, once you have more than a few variables, compilers often fail on arch like x86 because of the register starvation.</p>
<p>Now, it depends on your application, but I think you should think with a 1d layout by default, especially, if you need to handle multiple dimensions. The first problem with multi-dimensional arrays in C is that you cannot dynamically allocate them - if you allocate on a per-row basis, you will have awful performances because you don't have a contiguous piece of memory. See the <a href="http://www.fftw.org/fftw3%5Fdoc/Dynamic-Arrays-in-C%5F002dThe-Wrong-Way.html#Dynamic-Arrays-in-C%5F002dThe-Wrong-Way" rel="nofollow">FFTW doc</a> for details about this.</p>
<p>Note that you can always describe your single piece of memory with convenient array indexing on top of it (you allocate one big nxm memory block, and then create an array of n pointer to each row).</p>
http://stackoverflow.com/questions/1242680/is-there-different-about-the-following-memory-allocation/1242727#12427271Answer by David Cournapeau for Is there different about the following memory allocation?David Cournapeau2009-08-07T03:23:15Z2009-08-07T08:16:25Z<p>It all depends on what you are trying to do. If possible, it is better to do malloc/free in the same scope, IMO, it makes the code much more readable - memory allocation in C is already hard enough. In your case, you would first malloc, call the function, and free after outside the function. But of course, it is not always possible.</p>
<p>Some of your solutions will not work: the second one, for example, will not do what you want, because when you call the function, the pointer is <em>copied</em>:</p>
<pre><code>char *p;
function(p);
void function(char *q) {
// q is a copy of p, so when q is set by malloc, it will not be reflected in p
q = malloc(100);
}
</code></pre>
<p>Generally, you should do as the fopen functions: you <em>return</em> a pointer:</p>
<pre><code>char* p function() {
char* ret;
ret = malloc(100);
return ret;
}
char *p = function();
</code></pre>
<p>Or you could use a pointer to a pointer:</p>
<pre><code>char *p;
function(&p);
void function(char **q) {
// q is a copy of &p, so when *q is set by malloc, it is the same memory location as &p
*q = malloc(100);
}
</code></pre>
<p>I think the first one is much better, though, in general.</p>
<p>Also, concerning your style: sizeof(char) is useless, it is always equal to 1 by definition, whatever compiler/platform you are using, and casting the malloc is useless and actually dangerous (because it hides missing header inclusion where malloc is declared). It is only useful if you use malloc in C++ (where the cast is mandatory).</p>
http://stackoverflow.com/questions/1242633/bazaar-offline-branches/1242659#12426590Answer by David Cournapeau for Bazaar offline + branchesDavid Cournapeau2009-08-07T02:59:08Z2009-08-07T08:09:38Z<p>bzr fundamentally works with one branch / directory (the branch are visible at the file system level), so if you need to clone each branch from your repository (not unlike svn, in a way). Hg, at basic level, works this way too (although you can put several branches in one repository using say named branches).</p>
<p>For DVCS, it is important to distinguish between the following:</p>
<ul>
<li>Working tree: a versioned set of files (at a given revision)</li>
<li>Branch: a linear set of revisions</li>
<li>Repository: a set of revisions</li>
</ul>
<p>When you clone locally a directory versioned by bzr, you are copying the repository subset which contains all the revisions in the branch you are cloning, and get the working tree. This assumes you are not asking for a branch wo a working tree nor using a shared repository.</p>
<p>What you want, IIUC, is to clone the full repository with all the branches. There is no 'native' way to do so in bzr I believe, but plugins to help you toward this, like multi-pull and push-repo, to sync multiple branches in one shot.</p>
<p>But I don't understand why that's such a big problem, or the link with working offline: you just clone the branches you want to work on your laptop. </p>
http://stackoverflow.com/questions/1239577/git-and-svn-on-windows/1242672#12426723Answer by David Cournapeau for Git and SVN on WindowsDavid Cournapeau2009-08-07T03:05:09Z2009-08-07T03:05:09Z<p>git-svn does not work well on windows in my experience. What I would advise is to put your git import on something like github or any other git hosting, and use "pure" git on windows. This assumes you have a unix (or at worse cygwin, which should work better than msysgit I guess) to do the git-svn updates. That's not ideal, obviously.</p>
http://stackoverflow.com/questions/1225411/boosts-linear-algebra-solution-for-yax/1225433#12254332Answer by David Cournapeau for Boost's Linear Algebra Solution for y=AxDavid Cournapeau2009-08-04T02:04:47Z2009-08-04T02:04:47Z<p>Reading the boost documentation, it does not seem like solving w.r.t x is implemented. Solving in y is only a matter of matrix-vector product, which seems implemented in ublas.</p>
<p>One thing to keep in mind is that blas only implement 'easy' operations like addition, multiplication, etc... of vector and matrix types. Anything more advanced (linear problem solving, like your "solve in x y = A x", eigen vectors and co) is part of LAPACK, which built on top of BLAS. I don't know what boost provides in that respect.</p>
http://stackoverflow.com/questions/1222929/gil-in-python-3-1/1225350#12253501Answer by David Cournapeau for GIL in Python 3.1David Cournapeau2009-08-04T01:17:51Z2009-08-04T01:17:51Z<p>The GIL will not affect your code which does not use python objects. In Numpy, we release the GIL for computational code (linear algebra calls, etc...), and the underlying code can use multithreading freely (in fact, those are generally 3rd party libraries which do not know anything about python)</p>
http://stackoverflow.com/questions/1191950/when-are-framework-and-i-system-example-framework-headers-needed/1192800#11928000Answer by David Cournapeau for When are -framework and -I/System/.../Example.framework/Headers/ needed?David Cournapeau2009-07-28T08:53:16Z2009-07-28T08:53:16Z<p>framework are considered for both compilation and linking. I don't know anything about java, but maybe your problem is related to bundles vs. framework: multiple frameworks can be included in a bundle, for example. A <a href="http://developer.apple.com/documentation/MacOSX/Conceptual/BPFrameworks/Concepts/WhatAreFrameworks.html#//apple%5Fref/doc/uid/20002303-BBCEIJFI" rel="nofollow">framework may contain other frameworks as well</a>.</p>
<p>Unfortunately, those kind of mac-specific stuff is usually not documented in man pages.</p>
http://stackoverflow.com/questions/1192714/multithreading-in-uniprocessor/1192743#11927430Answer by David Cournapeau for Multithreading in UniprocessorDavid Cournapeau2009-07-28T08:42:53Z2009-07-28T08:42:53Z<p>It depends on the OS, but the scheduler usually considers thread priority as well. For example, for 'real-time' audio applications (e.g. recording the audio with some processing), the processing and recording is more important than the UI refreshment, since the audio signal is lost forever if you miss even a few samples. </p>
<p>Most "pro-grade" audio applications used multi-threading long before multi-core CPU became common-place.</p>
http://stackoverflow.com/questions/1177019/what-can-be-done-in-r-that-cant-be-done-with-python-numpy-scipy/1184027#11840277Answer by David Cournapeau for What can be done in R that can't be done with Python/Numpy/SciPyDavid Cournapeau2009-07-26T08:13:48Z2009-07-26T08:13:48Z<p>(Disclaimer: I am a NumPy developer).</p>
<p>One big advantage of R over any general purpose programming language is the integration. There is CRAN, which can be used to try packages very easily. Python does not have this ATM, and it will never be as good as R I am afraid, because this kind of problems, although relatively simple to solve for a special-purpose language, is incredibly hard for a general purpose, portable programming language like python. This and the history of S/R are the two big advantages of R IMHO. </p>
<p>Note that R has this quite rare special-purpose + open source nature which makes this a killer combination. For other special purposed languages like say matlab, distributing your code is a PITA. There is no real infrastructure to easily share and install 3rd party code.</p>
http://stackoverflow.com/questions/1178325/dvcs-and-data-loss/1181014#11810140Answer by David Cournapeau for DVCS and Data Loss?David Cournapeau2009-07-25T02:28:59Z2009-07-25T02:28:59Z<p>There is an inherent tension between being distributed and making sure everything is "saved" (with the underlying assumption that saved means being backed up somewhere else).</p>
<p>IMO, this is only a real problem if you work on several computers at the same time on the same line of work (or more exactly several repositories: I often need to share changes between several VM on the same computer for example). In this case, a "centralized" workflow would be ideal: you would set up a temporary server, and on some given branches, use a centralized workflow. None of the current DVCS I know of (git/bzr/hg) support this well. That would be a good feature to have, though.</p>
http://stackoverflow.com/questions/1135388/fast-euclidean-division-in-c4Fast Euclidean division in CDavid Cournapeau2009-07-16T04:31:28Z2009-07-17T08:23:21Z
<p>I am interested in getting the remainder of the <a href="http://en.wikipedia.org/wiki/Euclidean%5Fdomain" rel="nofollow">Euclidean</a> division, that is, for a pair of integers (i, n), find r such as:</p>
<pre><code>i = k * n + r, 0 <= r < |k|
</code></pre>
<p>the simple solution is:</p>
<pre><code>int euc(int i, int n)
{
int r;
r = i % n;
if ( r < 0) {
r += n;
}
return r;
}
</code></pre>
<p>But since I need to execute this tens of million of times (it is used inside an iterator for multidimensional arrays), I would like to avoid the branching if possible. Requirements:</p>
<ul>
<li>Branching but faster is also desirable.</li>
<li>A solution which works only for positive n is acceptable (but it has to work for negative i).</li>
<li>n is not known in advance, and can be any value > 0 and < MAX_INT</li>
</ul>
<h1>Edit</h1>
<p>It is actually quite easy to get the result wrong, so here is an example of the expected results:</p>
<ul>
<li>euc(0, 3) = 0</li>
<li>euc(1, 3) = 1</li>
<li>euc(2, 3) = 2</li>
<li>euc(3, 3) = 0</li>
<li>euc(-1, 3) = 2</li>
<li>euc(-2, 3) = 1</li>
<li>euc(-3, 3) = 0</li>
</ul>
<p>Some people also worry that it does not make sense to optimize this. I need this for an multi-dimensional iterator where out of bounds items are replaced by items in a 'virtual array' which repeats the original array. So if my array x is [1, 2, 3, 4], the virtual array is [...., 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4], and for example, x[-2] is x[1], etc... </p>
<p>For a nd array of dimension d, I need d Euclidean division for every point. If I need to do a correlation between a n^d array with a m^d kernel, I need n^d * m^d * d euclidean divisions. For a 3d image of 100x100x100 points and a kernel of 5*5*5 points, that's already ~ 400 million Euclidean divisions.</p>
http://stackoverflow.com/questions/1127328/source-code-of-c-c-functions/1128807#11288070Answer by David Cournapeau for source code of c/c++ functionsDavid Cournapeau2009-07-15T00:37:58Z2009-07-15T00:37:58Z<p>In general, I find the BSD libc much easier to read than the GNU one. There are less "gcc-isms", the core is much clearer in intent, etc... For example, the <a href="http://sourceware.org/git/?p=glibc.git;a=blob;f=malloc/malloc.c;h=70e4e58845863e92c759d65947cd6d2e11062c62;hb=339717d5f117d118750ec187b1779cafa349249e" rel="nofollow">BSD code for malloc</a> is quite readable compared to <a href="http://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libc/stdlib/malloc.c?rev=1.147.2.6.2.2;content-type=text%2Fplain" rel="nofollow">glibc</a></p>
http://stackoverflow.com/questions/1125970/python-documentation-generator/1126001#112600111Answer by David Cournapeau for Python documentation generatorDavid Cournapeau2009-07-14T15:03:27Z2009-07-14T15:03:27Z<p>The classic tool for API doc is <a href="http://epydoc.sourceforge.net/" rel="nofollow">epydoc</a>. It handles javadoc, docstrings, etc... But I find API docs tools to be quite poor. I much prefer tool which focus around the documentation itself, and enables to inject additional documentation extracted from the code. <a href="http://sphinx.pocoo.org/" rel="nofollow">Sphinx</a> is perfect for this job. It can generates html and pdf, you can include automatically extracted docstring from code, it does syntax highlighting, etc... A strong point of sphinx is that it is done by someone who knows something about web design, and does not look like a**. <a href="http://matplotlib.sourceforge.net/" rel="nofollow">matplotlib</a> website and doc is generated entirely from sphinx, with default values. It looks much nicer than anything you will get with epydoc/doxygen. And there is an integrated search engine in javascript</p>
http://stackoverflow.com/questions/1713335/peak-finding-algorithm-for-python-scipy/1807394#1807394Comment by David Cournapeau on Peak-finding algorithm for Python/SciPyDavid Cournapeau2009-11-30T12:02:01Z2009-11-30T12:02:01ZI tried to add some explanation, let me know if this is still unclear.http://stackoverflow.com/questions/1182190/alternative-to-complex-h-in-visual-studio/1183934#1183934Comment by David Cournapeau on Alternative to Complex.h in Visual StudioDavid Cournapeau2009-11-04T07:57:06Z2009-11-04T07:57:06Zthis answer is wrong: you cannot just use complex.h to get complex support.
If you can't use gcc and can't use C++, the only solution is to drop support for C99 complex.http://stackoverflow.com/questions/1500564/cprofile-and-python-finding-the-specific-line-number-that-code-spends-most-time/1502200#1502200Comment by David Cournapeau on cProfile and Python: Finding the specific line number that code spends most time onDavid Cournapeau2009-10-06T02:30:57Z2009-10-06T02:30:57ZI don't have this problem on my macbook (on snow leopard as well). I would advise against using sudo for installation, that's often a bad idea (it may break your system python, and sudo does not export your env variables as you would expect).
I would advise you to bring this problem on the enthought-dev mailing listhttp://stackoverflow.com/questions/1502293/what-are-the-most-important-ide-features-missing-in-vim/1502335#1502335Comment by David Cournapeau on What are the most important IDE features missing in Vim?David Cournapeau2009-10-01T07:17:07Z2009-10-01T07:17:07Za good text editor. Everytime I have to use VS or Eclipse, I find the editor very kludgy compared to vim. Granted, part of it is being used to vim.http://stackoverflow.com/questions/1500564/cprofile-and-python-finding-the-specific-line-number-that-code-spends-most-time/1500818#1500818Comment by David Cournapeau on cProfile and Python: Finding the specific line number that code spends most time onDavid Cournapeau2009-10-01T06:27:23Z2009-10-01T06:27:23Zrefactoring into small functions is not always possible - and function calls being expensive in python, this can affect speed in a significant way.http://stackoverflow.com/questions/1453767/prevent-cl-exe-from-printing-the-compiled-source-file/1453803#1453803Comment by David Cournapeau on Prevent cl.exe from printing the compiled source fileDavid Cournapeau2009-09-21T11:00:55Z2009-09-21T11:00:55ZI was afraid this was not possible. Thanks for the confirmationhttp://stackoverflow.com/questions/1453767/prevent-cl-exe-from-printing-the-compiled-source-file/1453786#1453786Comment by David Cournapeau on Prevent cl.exe from printing the compiled source fileDavid Cournapeau2009-09-21T11:00:19Z2009-09-21T11:00:19Zno, I am not. I just use cl /c /nologo foo.chttp://stackoverflow.com/questions/1248923/why-isnt-c-used-in-web-developement/1249050#1249050Comment by David Cournapeau on Why isn't C++ used in Web-Developement ?David Cournapeau2009-08-08T22:30:16Z2009-08-08T22:30:16Zespecially since gc is one of the thing which will make java/C# faster than C/C++, for things like string manipulation :)http://stackoverflow.com/questions/1248923/why-isnt-c-used-in-web-developement/1248967#1248967Comment by David Cournapeau on Why isn't C++ used in Web-Developement ?David Cournapeau2009-08-08T22:29:11Z2009-08-08T22:29:11Zthe claim that java is extremely slow compare to C#/C++ is laughable at best. There are several examples where C programs reimplemented in java which ended up even faster (cmu sphinx engine, for example). Of course, that won't always be true, but there is a widespread belief that C/C++ are the kings of speed, which is really not true, especially in practice when you have finite time to get to your result. Only thinking about string handling, such a common task in web devlopment, and so painful in C and C++.http://stackoverflow.com/questions/1248923/why-isnt-c-used-in-web-developement/1249039#1249039Comment by David Cournapeau on Why isn't C++ used in Web-Developement ?David Cournapeau2009-08-08T22:17:39Z2009-08-08T22:17:39Zwe may not think about the same thing: when I hear web development, I don't hear web-server. I would not put apache or thttpd into the web development category.http://stackoverflow.com/questions/1242633/bazaar-offline-branches/1242659#1242659Comment by David Cournapeau on Bazaar offline + branchesDavid Cournapeau2009-08-07T16:29:09Z2009-08-07T16:29:09Znothing is disallowed, but some things are easier than others. multi-push/multi-pull does not do what you want ?http://stackoverflow.com/questions/1010588/is-it-easier-to-manage-code-with-git-or-bazaar/1011238#1011238Comment by David Cournapeau on Is it easier to manage code with GIT or Bazaar?David Cournapeau2009-08-07T08:31:46Z2009-08-07T08:31:46ZYes, it is "just " post-hoc analysis - but I disagree that the same could be done in bzr. In theory, sure, you are right, but in practice, to be able to handle the whole tree in an efficient manner is so deeply ingrained in git, and it is out of the question with bzr for big repo ATM (bzr needs several copies of every file it handles in memory IIRC, so handling all of them at the same time would be painful). I think it will be a very long time before you see the feature in bzr or hg, if ever.http://stackoverflow.com/questions/1242633/bazaar-offline-branches/1242659#1242659Comment by David Cournapeau on Bazaar offline + branchesDavid Cournapeau2009-08-07T08:13:37Z2009-08-07T08:13:37ZActually, even with git where the model is all the branches in a single repository, when you clone a repository, you get only one branch, at least by default. Getting every branch of a repository is very unnatural for development IMHO.http://stackoverflow.com/questions/1242633/bazaar-offline-branches/1242659#1242659Comment by David Cournapeau on Bazaar offline + branchesDavid Cournapeau2009-08-07T08:12:18Z2009-08-07T08:12:18ZGod, no, the whole point of DVCS is to go away from the broken SVN model for branches and tags :)
But when you clone with bzr (and hg), you are copying a subset of all the revisions, the ones attached to the branch you are cloning. Generally, you do NOT want to get every branch (I think that this is linked to a fear of losing some revisions and influence of CVS/SVN). http://stackoverflow.com/questions/1178325/dvcs-and-data-loss/1181014#1181014Comment by David Cournapeau on DVCS and Data Loss?David Cournapeau2009-07-29T00:44:42Z2009-07-29T00:44:42ZI am not sure I understand why ShareExtension or git-new-workdir would help: to be able to share between computers, the sharing needs to be networked (network is also more practical even on the same machine through vmware IMHO)