User simon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T09:10:52Zhttp://stackoverflow.com/feeds/user/14143http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/179904/what-is-matlab-good-for-why-is-it-so-used-by-universities-when-is-it-better-tha/180341#18034136Answer by simon for What is MATLAB good for? Why is it so used by universities? When is it better than Python?simon2008-10-07T20:47:37Z2009-10-13T22:24:15Z<p>Adam is only partially right. Many, if not most, mathematicians will never touch it. If there is a computer tool used at all, it's going to be something like <a href="http://en.wikipedia.org/wiki/Mathematica" rel="nofollow">Mathematica</a> or <a href="http://en.wikipedia.org/wiki/Maple%5F%28software%29" rel="nofollow">Maple</a>. Engineering departments, on the other hand, often rely on it and there are definitely useful things for some applied mathematicians. It's also used heavily in industry in some areas.</p>
<p>Something you have to realize about MATLAB is that it started off as a wrapper on <a href="http://en.wikipedia.org/wiki/Fortran" rel="nofollow">Fortran</a> libraries for linear algebra. For a long time, it had an attitude that "all the world is an array of doubles (floats)". As a language, it has grown very organically, an there are some flaws that are very much baked in, if you look at it just as a programming language.</p>
<p>However, if you look at it as an environment for doing certain types of research in, it has some real strengths. It's about as good as it gets for doing floating point linear algebra. The notation is simple and powerful, the implementation fast and trusted. It is very good at generating plots and other interactive tasks. There are a large number of `toolboxes' with good code for particular tasks, that are affordable. There is a large community of users that share numerical codes (Python + <a href="http://en.wikipedia.org/wiki/NumPy" rel="nofollow">NumPy</a> has nothing in the same league, at least yet)</p>
<p>Python, warts and all, is a much better programming languags (as are many others). However, it's a decade or so behind in terms of the tools.</p>
<p>The key point is that the majority of people who use MATLAB are not programmers really, and don't want to be. </p>
<p>It's a lousy choice for a general programming language; it's quirky, slow for many tasks (you need to vectorize things to get efficient codes), and not easy to integrate with the outside world. On the other hand, for the things it is good at, it is very very good. Very few things compare. There's a company with reasonable support and who knows how many man-years put into it. This can matter in industry.</p>
<p>Strictly looking at your Python vs. MATLAB comparison, they are mostly different tools for different jobs. In the areas where they do overlap a bit, it's hard to say what the better route to go is (depends a lot on what you're trying to do). But mostly Python isn't all that good at MATLAB's core strengths, and vice versa.</p>
http://stackoverflow.com/questions/1055693/clojure-loop-reads-one-extra/1055703#10557030Answer by simon for Clojure loop reads one extra.simon2009-06-28T20:41:34Z2009-06-28T20:41:34Z<p>I don't know clojure, but it looks to me like you're reading the stream again in "result" form, is this like final in CL ?</p>
http://stackoverflow.com/questions/1002503/how-is-cs-multiple-inheritance-implemented/1002566#10025660Answer by simon for How is C++'s multiple inheritance implemented?simon2009-06-16T16:24:57Z2009-06-16T16:24:57Z<p>This is an interesting issue that really isn't C++ specific. Things get more complex also when you have a language with multiple dispatch as well as multiple inheritance (e.g. CLOS). </p>
<p>People have already noted that there are different ways to approach the problem. You might find reading a bit about Meta-Object Protocols (MOPs) interesting in this context...</p>
http://stackoverflow.com/questions/1002440/which-scripting-languages-support-multi-core-programming/1002508#10025082Answer by simon for Which scripting languages support multi-core programming?simon2009-06-16T16:13:00Z2009-06-16T16:19:59Z<p>You seem use a definition of "scripting language" that may raise a few eyebrows, and I don't know what that implies about your other requirements.</p>
<p>Anyway, have you considered TCL? It will do what you want, I believe.</p>
<p>Since you are including fairly general purpose languages in your list, I don't know how heavy an implementation is acceptable to you. I'd be surprised if one of the zillion scheme implementations doesn't to native threads, but off the top of my head, I can only remember the MzScheme used to but I seem to remember support was dropped. Certainly some of the common lisps do this well. If ECL does, it might work for you (embeddable). I don't use it though so I'm not sure what the state of it's threading support is, and this may of course depend on platform.</p>
<p>[Update] Also, iirc GHC Haskell doesn't do quite what you are asking, but may do effectively what you want since, again, iirc, it will spin of a native thread per core or so and then run it's threads across those....</p>
http://stackoverflow.com/questions/952886/editing-large-files-on-mac-os-x/952922#9529220Answer by simon for Editing large files on Mac OS Xsimon2009-06-04T20:31:21Z2009-06-04T20:34:13Z<p>emacs, naturally, at least a 64 bit build (you can do that on OS X now, right?)</p>
<p>But also, these are surely generated files. Do you really need to interact with them all at once?</p>
http://stackoverflow.com/questions/730620/how-a-hashtable-works/730716#7307165Answer by simon for How a hashtable workssimon2009-04-08T16:11:34Z2009-06-04T17:35:28Z<p>This turns out to be a pretty deep area of theory, but the basic outline is simple.</p>
<p>Essentially, a hash function is just a function that takes things from one space (say strings of arbitrary length) and maps them to a space useful for indexing (unsigned integers, say).</p>
<p>If you only have a small space of things to hash, you might get away with just interpreting those things as integers, and you're done (e.g. 4 byte strings)</p>
<p>Usually, though, you've got a much larger space. If the space of things you allow as keys is bigger than the space of things you are using to index (your uint32's or whatever) then you can't possibly have a unique value for each one. When two or more things hash to the same result, you'll have to handle the redundancy in an appropriate way (this is usually referred to as a collision, and how you handle it or don't will depend a bit on what you are using the hash for).</p>
<p>This implies you want it to be unlikely to have the same result, and you probably also would really like the hash function to be fast.</p>
<p>Balancing these two properties (and a few others) has kept many people busy!</p>
<p>In practice you usually should be able to find a function that is known to work well for your application and use that.</p>
<p>Now to make this work as a hashtable: Imagine you didn't care about memory usage. Then you can create an array as long as your indexing set (all uint32's, for example). As you add something to the table, you hash it's key and look at the array at that index. If there is nothing there, you put your value there. If there is already something there, you add this new entry to a list of things at that address, along with enough information (your original key, or something clever) to find which entry actually belongs to which key.</p>
<p>So as you go a long, every entry in your hashtable (the array) is either empty, or contains one entry, or a list of entries. Retrieving is a simple as indexing into the array, and either returning the value, or walking the list of values and returning the right one.</p>
<p>Of course in practice you typically can't do this, it wastes too much memory. So you do everything based on a sparse array (where the only entries are the ones you actually use, everything else is implicitly null).</p>
<p>There are lots of schemes and tricks to make this work better, but that's the basics.</p>
http://stackoverflow.com/questions/943781/where-can-i-find-a-good-read-about-bicubic-interpolation-and-lanczos-resampling/947235#9472353Answer by simon for Where can I find a good read about bicubic interpolation and Lanczos resampling?simon2009-06-03T21:02:30Z2009-06-03T21:02:30Z<p>While what Ants Aasma says roughly describes the difference, I don't think it is particularly informative as to why you might do such a thing.</p>
<p>As far as links go, you are asking a very basic question in image processing, and any decent introductory textbook on the subject will describe this. If I remember correctly, <a href="http://rads.stackoverflow.com/amzn/click/0201180758" rel="nofollow">Gonzales and Woods</a> is decent on it, but I'm away from my books and can't check.</p>
<p>Now on to the particulars, it should help to think about what you are doing fundamentally. You have a square lattice of measurements that you want to interpolate new values for. In the simple case of upsampling, lets imagine you want a new measurement in between every one that you already have (e.g. double the resolution).</p>
<p>Now you won't get the "correct" value, because in general you don't have that information. So you have to estimate it. How to do this? A very simple way would be to linearly interpolate. Everyone knows how to do this with two points, you just draw a line between them, and read the new value off the line (in this case, at the half way point).</p>
<p>Now an image is two dimensional, so you really want to do this in both the left-right and up-down directions. Use the result for your estimate and voila you have "bilinear" interpolation.</p>
<p>The main problem with this is that it isn't very accurate, although it's better (and slower) than the "nearest neighbor" approach which is also very local and fast.</p>
<p>To address the first problem, you want something better than a linear fit of two points, you want to fit something to more data points (pixels), and something that can be nonlinear. A good trade off on accuracy and computational cost is something called a cubic spline. So this will give you a smooth fit line, and again you approximate your new "measurement" by the value it takes in the middle. Do this in both directions and you've got "bicubic" interpolation.</p>
<p>So that's more accurate, but still heavy. One way to address the speed issue is to use a convolution, which has the nice property that in the Fourier domain, it's just a multiplication, so we can implement it quite quickly. But you don't need to worry about the implementation to understand that the convolution result at any point is one function (your image) being integrated in product another, typically much smaller support (the part that is non-zero) function called the kernel), after that kernel has been centered over that particular point. In the discrete world, these are just sums of the products.</p>
<p>It turns out that you can design a convolution kernel that has properties quite like the cubic spline, and use that to get a fast "bicubic" </p>
<p>Lancsoz resampling is a similar thing, with slightly different properties in the kernel, which primarily means they will have different characteristic artifacts. You can look up the details of these kernel functions easily enough (I'm sure wikipedia has them, or any intro text). The implementations used in graphics programs tend to be highly optimized and sometimes have specialized assumptions which make them more efficient but less general.</p>
http://stackoverflow.com/questions/193298/best-practices-in-latex/946478#9464782Answer by simon for Best practices in LaTeXsimon2009-06-03T18:50:44Z2009-06-03T18:50:44Z<p>Here's one I don't think has been mentioned yet.</p>
<p>When you are including figures via a <code>\includegraphics</code> and the like, don't specify the full pathname (use graphicspath to organize them) and don't specify the file suffix. Keep all of your figures in one canonical form (or one raster, one vector) and use make or the like to generate temporary files as needed.</p>
<p>This is much easier to organize, and also works well with different build paths (e.g. pdflatex vs latex->dvi->ps) </p>
<p>For example, if I have a file <code>figures/figure1.png</code> and I want to include it, my preamble will include something like</p>
<pre><code>\usepackage{graphicx}
\graphicspath{{./figures/}}
</code></pre>
<p>And the document will have something like</p>
<pre><code>\begin{figure}[htbp]
\centering
\includegraphics[width=0.8\textwidth]{figure1}
\caption{something terribly interesting}
\end{figure}
</code></pre>
<p>This works directly with pdflatex. If I need a .dvi, I'll have a makefile target that generates .eps files from .png files as needed, and either place them in './figures', or more likely in './eps' with an update to graphicspath above.</p>
<p>The benefits: Files can be organized into subdirs as needed, but you don't need to edit all over the place if you move them. You can also have different output targets without changing your source images and figures, and you won't have any surprised from conversion (like jpeg compression artifacts showing up in the pdf file you've generated from a .dvi)</p>
http://stackoverflow.com/questions/935251/linux-delete-files-that-dont-contain-specific-number-of-lines/935446#9354460Answer by simon for Linux: delete files that don't contain specific number of linessimon2009-06-01T15:55:12Z2009-06-03T16:45:31Z<p>My command line mashing is pretty rusty, but I think something like this will work safely (change the "10" to whatever number of lines in the grep) even if your filenames have spaces in them. Adjust as needed. You'd need to tweak it if newlines in filenames are possible.</p>
<pre><code>find . -name \*.txt -type f -exec wc -l {} \; | grep -v "^10 .*$" | cut --complement -f 1 -d " " | tr '\012' '\000' | xargs -0 rm -f
</code></pre>
http://stackoverflow.com/questions/854113/why-would-you-choose-oo-language-over-functional-language/854863#8548630Answer by simon for Why would you choose OO language over functional language?simon2009-05-12T21:02:04Z2009-05-12T21:02:04Z<p>Why would you choose an apple fruit over an orange fruit?</p>
<p>[answer for the humor impaired: it rather depends on what your trying to do with it]</p>
http://stackoverflow.com/questions/850920/learning-objective-c-without-a-mac/850981#8509812Answer by simon for Learning Objective C without a Macsimon2009-05-12T02:57:54Z2009-05-12T02:57:54Z<p>apple contributed the objective c changes back to gcc (not that they had much choice, being GPL). So wherever you can set up gcc, you can set up an objective-c compiler.</p>
<p>Beyond that, the <a href="http://www.gnu.org/software/gnustep/" rel="nofollow">Gnustep</a> environment can give you a bit of the flavor of the original OpenStep/NextStep environment.</p>
http://stackoverflow.com/questions/848334/extract-text-from-csv-file/848418#8484182Answer by simon for Extract Text from CSV filesimon2009-05-11T14:35:28Z2009-05-11T14:35:28Z<p>I'm not sure exactly what you mean by a single column CSV file; if it has a single column, isn't it just a text file?</p>
<p>Anyway, if each line looks like above and we have a file like this:</p>
<pre>
bash-3.2$ cat example.txt
The sample battery has a Voltage: 11.1V, and capacity: 4500mAh
The sample battery has some other info but no v entry
The sample battery has a Voltage: 12.1V, and capacity: 4200mAh
</pre>
<p>Then you can achieve this easily strip out the 11.1 with a regexp and retain the indexing with like this:</p>
<pre>
bash-3.2$ sed -e 's/.*Voltage: \([^V]*\)V.*/\1/' -e 's/^The.*//' < example.txt
11.1
12.1
</pre>
<p>Which can be adjusted if I've misunderstood the format of the not voltage containing lines. Note that my expressions are very fragile with respect to your formatting, and can be improved. Also note that I didn't include quotations, as your intent was unclear. The above needs to be (trivially) adjusted to work with them.</p>
http://stackoverflow.com/questions/835585/the-correctness-of-neural-networks/835759#8357591Answer by simon for The correctness of neural networkssimon2009-05-07T16:38:29Z2009-05-07T16:44:14Z<p>You're opening up a bigger can of worms here than you might expect.</p>
<p>NN's are perhaps best thought of as universal function approximators, by the way, which may help you in thinking about this stuff.</p>
<p>Anyway, there is nothing special about NN's in terms of your question, the problem applies to any sort of learning algorithm.</p>
<p>The confidence you have in the results it is giving is going to rely on both the quantity and the quality (often harder to determine) of the training data that you have.</p>
<p>If you're really interested in this stuff, you may want to read up a bit on the problems of overtraining, and ensemble methods (bagging, boosting, etc.).</p>
<p>The real problem is that you usually aren't actually interested in the "correctness" (cf quality) of an answer on a given input that you've already seen, rather you care about predicting the quality of answer on an input you haven't seen yet. This is a much more difficult problem. Typical approaches then, involve "holding back" some of your training data (i.e. the stuff you know the "correct" answer for) and testing your trained system against that. It gets subtle though, when you start considering that you may not have enough data, or it may be biased, etc. So there are many researchers who basically spend all of their time thinking about these sort of issues! </p>
http://stackoverflow.com/questions/835668/antialiasing-alternatives/835720#8357200Answer by simon for Antialiasing alternativessimon2009-05-07T16:28:40Z2009-05-07T16:28:40Z<p>There are (often misnamed, btw, but that's a dead horse) many anti-aliasing approaches that can be used. Depending on what you know about the original signal and what the intended use is, different things are most likely to give you the desired result.</p>
<p>"Support from the host OS" is probably most sensible if the output is through the OS display facilities, since they have the most information about what is being done to the image.</p>
<p>I suppose that's a long way of asking what are you actually trying to do? Many graphics libraries will provide some form of antialiasing, whether or not they'll be appropriate depends a lot on what you're trying to achieve.</p>
http://stackoverflow.com/questions/831893/does-it-make-sense-to-use-own-mipmap-creation-algorithm-for-opengl-textures/831920#8319201Answer by simon for Does it make sense to use own mipmap creation algorithm for OpenGL textures?simon2009-05-06T21:40:28Z2009-05-06T21:45:58Z<p>What is motivating you to try? Are the mipmaps you have currently being poorly generated? (i.e. have you looked?) Bear in mind your results will often still be (tri)linearly interpolated anyway, so between that an motion there are often steeply diminishing returns to improved resampling.</p>
http://stackoverflow.com/questions/822356/arithmetic-operations-on-very-very-long-decimals/822391#8223913Answer by simon for Arithmetic Operations on Very, Very Long Decimalssimon2009-05-04T22:25:03Z2009-05-04T22:25:03Z<p>For languages that don't support computations on bignums, there are often libraries. You might have a look at <a href="http://gmplib.org/" rel="nofollow">GMP</a>, for example. The docs will give you pointers to some of the typical algorithmic approaches.</p>
<p>Making bignum arithmetic fast is difficult, so there are some pretty convoluted algorithms out there...</p>
http://stackoverflow.com/questions/700241/what-is-the-difference-between-linear-search-and-binary-search/822031#8220311Answer by simon for What is the difference between Linear search and Binary search?simon2009-05-04T20:55:58Z2009-05-04T21:52:16Z<p>Try this: Pick a random name "Lastname, Firstname" and look it up in your phonebook.</p>
<p>1st time: start at the beginning of the book, reading names until you find it, or else find the place where it would have occurred alphabetically and note that it isn't there.</p>
<p>2nd time: Open the book at the half way point and look at the page. Ask yourself, should this person be to the left or to the right. Whichever one it is, take that 1/2 and find the middle of it. Repeat this procedure until you find the page where the entry should be and then either apply the same process to columns, or just search linearly along the names on the page as before.</p>
<p>Time both methods and report back!</p>
<p>[also consider what approach is better if all you have is a list of names, not sorted...]</p>
http://stackoverflow.com/questions/807477/configuring-subversion-to-use-system-users-passwords/807495#8074952Answer by simon for Configuring Subversion to use system users/passwordssimon2009-04-30T15:24:57Z2009-04-30T15:24:57Z<p>Any particular reason not to just access it via svn + ssh, since they have accounts?</p>
http://stackoverflow.com/questions/800261/some-pointers-on-implementing-algorithms-in-code/800276#8002760Answer by simon for Some pointers on implementing algorithms in codesimon2009-04-28T23:32:45Z2009-04-28T23:32:45Z<p>Both of these introductory books have good information about this sort of thing:
<a href="http://www.htdp.org/" rel="nofollow">How To Design Programs</a> and moreso <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">Structure and Interpretation of Computer Programs</a></p>
<p>Both are somewhat funcitonal (and scheme) oriented, but that's a natural fit for these sorts of problems.</p>
<p>On top of that, you might get quite a bit out of <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a></p>
http://stackoverflow.com/questions/786858/fitting-title-for-my-position/798739#7987390Answer by simon for Fitting title for my positionsimon2009-04-28T16:15:05Z2009-04-28T16:15:05Z<p>I wouldn't worry about it. Call yourself a developer, it's accurate. Anyone who actually cares what you've done in detail isn't going to get it from your job title anyway. People understand that titles are pretty fluid at a small shop, and yours is tiny.</p>
<p>After all formal title might tell you quite a bit about someones job if they work in a large, well known organization. It tells you next to nothing about a job in small place you aren't familiar with.</p>
<p>To be fair, you might bump into someone who has a lot invested in the absence or presence of "senior" or the like on your business card absent real information... but nobody that should matter to you.</p>
http://stackoverflow.com/questions/797688/how-to-determine-a-strings-dna-for-likeness-to-another/798047#7980471Answer by simon for How to determine a strings dna for likeness to another simon2009-04-28T13:51:16Z2009-04-28T13:51:16Z<p>Many people have suggested looking at distance/metric like approaches, and I think the wording of the question leads that way. (By the way, a hash like md5 is trying to do pretty much the opposite thing that a metric does, so it's hardly surprising that this wouldn't work for you. There are similar ideas that don't change much under small deltas, but I suspect they don't encode enough information for what you want to do)</p>
<p>Particularly given your update in the comments though, I think this type of approach is not very helpful.</p>
<p>What you are looking for is more of a clustering problem, where you want to generate a signature (i.e. feature vector) from each email and later compare it to new inputs. So essentially what you have is a machine learning problem. Deciding what "close" means may be a bit of a challenge. To get started though, assuming it actually is emails you're looking at you may do well to look at the sorts of feature generation done by many spam-filters, this will give you (probably Euclidean, at least to start) a space to measure distances in based on a signature (feature vector).</p>
<p>Without knowing more about your problem it's hard to be more specific.</p>
http://stackoverflow.com/questions/795823/default-arguments-in-matlab/795839#7958398Answer by simon for Default Arguments in Matlabsimon2009-04-28T00:55:17Z2009-04-28T02:40:40Z<p>As far as I know, there isn't a direct way to do this like you've attempted.</p>
<p>The usual approach is to use varargs and check against the number of args. Something like:</p>
<pre><code>function f(arg1,arg2,arg3)
if nargin < 3
arg3 = 'some default'
end
end
</code></pre>
<p>There are a few fancier things you can do with isempty, etc., and you might want to look at matlab central for some packages that bundle these sorts of things.</p>
<p>[update]
glad that helped.</p>
<p>you might have a look at varargin, nargchk, etc. they're useful functions for this sort of thing. varargs allow you to leave a variable number of final arguments, but this doesn't get you around the problem of default values for some/all of them.</p>
http://stackoverflow.com/questions/795361/unresolved-external-symbol-error-c/795373#7953731Answer by simon for unresolved external symbol Error - Csimon2009-04-27T21:32:08Z2009-04-27T21:32:08Z<p>It's not entirely clear what question you are actually asking. But it looks like your linker can't find the "send" function anywhere it's been told to look.</p>
http://stackoverflow.com/questions/791099/preferring-certain-file-extensions-with-emacs-file-name-completion/791154#7911541Answer by simon for Preferring certain file extensions with Emacs file name completionsimon2009-04-26T16:38:44Z2009-04-26T16:38:44Z<p>Probably the easiest way to do this in your case is just to customize the variable "completion-ignored-extensions". </p>
<p>However, this will mean that emacs always ignores things like ".log" and ".pdf" which may not be what you want. If you want it to be more selective, you may have to effectively re-implement the function file-name-completion.</p>
http://stackoverflow.com/questions/790960/how-to-synthesize-sounds/791142#7911422Answer by simon for How to synthesize sounds?simon2009-04-26T16:32:34Z2009-04-26T16:32:34Z<p>Cheery, if you want to generate (from scratch) something that really sounds "organic", i.e. like a physical object, you're probably best off to learn a bit about how these sounds are generated. For a solid introduction, you could have a look at a book such as Fletcher and Rossings <a href="http://rads.stackoverflow.com/amzn/click/0387983740" rel="nofollow">The Physics of Musical Instruments</a>. There's lots of stuff on the web too, you might want to have a look at a the primer James Clark has <a href="http://www.cim.mcgill.ca/~clark/emusic.html" rel="nofollow">here</a></p>
<p>Having at least a skim over this sort of stuff will give you an idea of what you are up against. Modeling physical instruments accurately is very difficult!</p>
<p>If what you want to do is have something that sounds physical, rather something that sounds like instrument X, your job is a bit easier. You can build up frequencies quite easily and stack them together, add a little noise, and you'll get something that at least doesn't sound anything like a pure tone.</p>
<p>Reading a bit about Fourier analysis in general will help, as will Frequency Modulation (FM) techniques.</p>
<p>Have fun!</p>
http://stackoverflow.com/questions/789527/ocr-convert-edge-into-a-vector-path/789592#7895920Answer by simon for OCR: Convert edge into a vector pathsimon2009-04-25T19:46:05Z2009-04-25T19:46:05Z<p>This is in general a very difficult problem. Which is why, for example, you don't see good code to generate vector font descriptions from bitmapped fonts, let alone OCR results.</p>
<p>I you have a lot of constraints on the text you will see, etc, you can certainly fit spline curves to them, but this is always going to be a bit fiddly. The more complicated your situation becomes, the more likely your algorithm will fall apart and need parameter twiddling etc. from a user. As long as you are ok with fairly rough results (and it sounds like you would be) you should be able to do something. </p>
<p>Fitting a polygon to the contours first will probably be a good way to get started.</p>
http://stackoverflow.com/questions/788005/is-a-kd-tree-suitable-for-4d-space-time-data-x-y-z-time/788016#7880162Answer by simon for Is a kd-tree suitable for 4D space-time data (x,y,z,time)?simon2009-04-25T01:17:09Z2009-04-25T01:28:46Z<p>You haven't really given enough information to answer this.</p>
<p>But sure, in general kd-trees are perfectly suitable for 4 (or 5 or 6 or...) dimensional data --- if the spatial (or in your case space/time-ial) distribution lends itself to kd-tree decomposition. In other words, it depends (sound familiar?).</p>
<p>kd-trees are just one method of spatial decomposition that lend themselves to certain localized searches. As you go to higher dimensions, the curse of dimensionality problem rears it's head, of course, but 4d isn't too bad (you probably want at least a several hundred points though).</p>
<p>In order to know if this will work for you, you have to analyse some other criteria. Is approximate NN search good enough (this can help a lot). Is tree balancing likely to be expensive? etc.</p>
http://stackoverflow.com/questions/786691/is-there-a-vector3-type-in-python/786758#7867582Answer by simon for Is there a Vector3 type in Python?simon2009-04-24T17:01:46Z2009-04-24T17:01:46Z<p>I don't believe there is anything standard (but I could be wrong, I don't keep up with python that closely).</p>
<p>It's very easy to implement though, and you may want to build on top of the numpy array as a container for it anyway, which gives you lots of good (and efficient) bits and pieces.</p>
http://stackoverflow.com/questions/786670/creating-on-demand-print-quality-pdfs-preferably-in-ruby-if-feasible/786690#7866901Answer by simon for Creating on-demand, print-quality PDFs (preferably in Ruby if feasible)simon2009-04-24T16:46:10Z2009-04-24T16:46:10Z<p>Typesetting well is hard. </p>
<p>If you can't find a ruby typesetting library, you may want to look at running a background pdflatex. LaTeX source is pretty easy to generate programmatically.</p>
<p>How useful this idea is will depend a bit on how complicated your documents are, and how much you care about the quality of output. If you have simple text only, and only want something a bit better than html, you probably have more options.</p>
http://stackoverflow.com/questions/786582/metric-for-program-size/786601#7866010Answer by simon for Metric for Program Sizesimon2009-04-24T16:23:30Z2009-04-24T16:33:34Z<p><i>What are some suggested means of determining the size of an application that will provide real meaning?</i></p>
<p>If you ever find a really good answer to this, please write it up properly, ok?</p>
<p>Code metrics nearly universally suck, in my experience. A few of them manage to be merely bad.</p>
<p>[addendum]</p>
<p>To be fair, the problem isn't so precisely that "code metric suck", after all they are just measurements (hopefully well defined ones); the problem is that they never seem to measure what people want them to measure <i>but are used as if they did</i>. Blaming the numbers for this abuse isn't really fair.</p>
http://stackoverflow.com/questions/1043293/real-life-benefits-of-dynamic-languagesComment by simon on Real Life Benefits of Dynamic Languages?simon2009-06-25T14:06:41Z2009-06-25T14:06:41Zthe actually odd thing about that formulation is that dynamic languages have been around far longer than OOP, very nearly as long as proceduralhttp://stackoverflow.com/questions/1003292/imread-and-matlabComment by simon on imread and matlabsimon2009-06-16T18:54:49Z2009-06-16T18:54:49ZNo. You are passing the strings 'input' and 'output' as filenames. This is too trivial to make a separate function though, is this really part of a larger question?http://stackoverflow.com/questions/1002440/which-scripting-languages-support-multi-core-programming/1002508#1002508Comment by simon on Which scripting languages support multi-core programming?simon2009-06-16T16:40:59Z2009-06-16T16:40:59ZTCL has it's own approach, but you can certainly get it to use all of your cores, if that's the primary issue. At least on the platforms I've done that on (which wasn't recent). I suspect it may not be in the default build either, but it can be turned on and rebuild easily enough.http://stackoverflow.com/questions/952886/editing-large-files-on-mac-os-x/952922#952922Comment by simon on Editing large files on Mac OS Xsimon2009-06-04T20:37:54Z2009-06-04T20:37:54Zyes to 128mb limit on 32. I should double check this about 64 bit builds on OS X, as it is funny about 64 bit in some wayshttp://stackoverflow.com/questions/935251/linux-delete-files-that-dont-contain-specific-number-of-lines/935363#935363Comment by simon on Linux: delete files that don't contain specific number of linessimon2009-06-01T15:59:22Z2009-06-01T15:59:22Zthis will fail on filenames containing spaces, and iirc on large directories. See my "find" based comment for one way around that.http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/726942#726942Comment by simon on What are the dark corners of Vim your mom never told you about?simon2009-05-12T21:15:21Z2009-05-12T21:15:21ZGamecat: the 8h later version looks nearly exactly like the version now (with some trivial cleanup) , but your editor read 8h worth of SO threads...http://stackoverflow.com/questions/58640/great-programming-quotes/61302#61302Comment by simon on Great programming quotessimon2009-05-11T15:14:01Z2009-05-11T15:14:01ZKyralessa, fwiw the quote probably predates Coke Zerohttp://stackoverflow.com/questions/848334/extract-text-from-csv-fileComment by simon on Extract Text from CSV filesimon2009-05-11T14:38:31Z2009-05-11T14:38:31ZAssaf, that depends if you are following the CSV convention that quoted statements are strings than can contain commashttp://stackoverflow.com/questions/836630/how-to-use-built-in-list-function-filterComment by simon on how to use built in list function "filter"simon2009-05-07T19:48:48Z2009-05-07T19:48:48Zwhy don't you show us what you've done so far, and where you are getting stuck?http://stackoverflow.com/questions/831893/does-it-make-sense-to-use-own-mipmap-creation-algorithm-for-opengl-textures/831920#831920Comment by simon on Does it make sense to use own mipmap creation algorithm for OpenGL textures?simon2009-05-06T22:06:33Z2009-05-06T22:06:33ZI'm not sure how you're doing it now, but these days you can have the GPU generate them, which can be fast and pretty good. More importantly though, you are either looking at these at the wrong resolution, or more likely, linearly interpolating between them. So your beautifully crafted hand-resampled versions usually aren't seen... hence diminishing returns. Are you actually seeing artifacts, or is this purely academic?http://stackoverflow.com/questions/769836/efficiency-speed-for-trigonometric-functions/769883#769883Comment by simon on Efficiency/speed for trigonometric functionssimon2009-05-03T22:44:48Z2009-05-03T22:44:48ZSol: well, the question isn't worded very clearly, so I talked about the general case (and noted to check the geometry). I'd sort of hoped for a clarification. Either way, though, you're missing the point a bit; even if atan2 was the obvious approach, OP's point was that already knowing the distance this might not be fastest (which is true) and wanted the quickest approach. It's this last bit that's really not obvious.http://stackoverflow.com/questions/812135/emacs-modes-command-attempted-to-use-minibuffer-while-in-minibufferComment by simon on Emacs Modes: "Command attempted to use minibuffer while in minibuffer"simon2009-05-01T16:43:13Z2009-05-01T16:43:13ZAnother way to look at is that it's your workflow above that's broken, not emacs. G-g out of the minibuffer before changing buffers to set a new region or whatever, rather than trying to recurse (as you're doing)http://stackoverflow.com/questions/106058/practical-example-of-lisps-flexibility/106176#106176Comment by simon on Practical example of Lisp's flexibility?simon2009-05-01T16:38:42Z2009-05-01T16:38:42ZOusterhout's observation is actually pretty sloppy. It's a pretty good argument that lisp is not a good average language for today's average programmer, which ignores the fact that language design and the current average programmer have co-evolved (pressure on one side for interchangeable programmer-units, on the other for language power), and more importantly misses the fact that these averages are not very interesting usually. Sometimes "everyone else is doing it" is a good idea to follow, other times not at all.http://stackoverflow.com/questions/807477/configuring-subversion-to-use-system-users-passwords/807495#807495Comment by simon on Configuring Subversion to use system users/passwordssimon2009-05-01T15:39:41Z2009-05-01T15:39:41ZCraig: sure, that's why I asked if there was a particular reason for this, rather than just stating this was the way to do it. svn+ssh is the easy way in this situation if it will work, but it won't work on every network. http://stackoverflow.com/questions/791036/statistical-estimation-algorithmComment by simon on Statistical estimation algorithmsimon2009-04-26T16:10:02Z2009-04-26T16:10:02ZIt's really not clear to me what you are trying to do. I'll try and answer your question if you can explain in detail what all of your measurements mean, how many of them you have, and what exactly you want to estimate.