User nsanders - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T20:37:43Zhttp://stackoverflow.com/feeds/user/1244http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1171521/linear-regression-confidence-intervals-in-sql/1425366#14253661Answer by nsanders for Linear regression confidence intervals in SQLnsanders2009-09-15T05:54:38Z2009-09-15T05:54:38Z<p>An equation for confidence interval width as f(x) is given here under "Confidence Interval on Fitted Values"</p>
<p><a href="http://www.weibull.com/DOEWeb/confidence_intervals_in_simple_linear_regression.htm" rel="nofollow">http://www.weibull.com/DOEWeb/confidence_intervals_in_simple_linear_regression.htm</a></p>
<p>The page walks you through an example calculation too.</p>
http://stackoverflow.com/questions/1425162/symmetrically-adressable-matrix/1425298#14252983Answer by nsanders for Symmetrically adressable matrixnsanders2009-09-15T05:34:22Z2009-09-15T05:34:22Z<p>Golub and Van Loan's "Matrix Computations" book outlines a feasible addressing scheme:</p>
<p>You pack the data in to a vector and access as follows, assuming i >= j:</p>
<pre><code>a_ij = A.vec((j-1)n - j(j-1)/2 + i)
</code></pre>
http://stackoverflow.com/questions/1425226/matlab-strcat-function-troubles-with-spaces/1425282#14252824Answer by nsanders for Matlab strcat function troubles with spacesnsanders2009-09-15T05:28:49Z2009-09-15T05:28:49Z<p>From the matlab help page for strcat:</p>
<p>"strcat ignores trailing ASCII white space characters and omits all such characters from the output. White space characters in ASCII are space, newline, carriage return, tab, vertical tab, or form-feed characters, all of which return a true response from the MATLAB isspace function. Use the concatenation syntax [s1 s2 s3 ...] to preserve trailing spaces. strcat does not ignore inputs that are cell arrays of strings. "</p>
http://stackoverflow.com/questions/895571/converting-x-y-values-in-camera-view-to-pan-tilt-values/1424472#14244721Answer by nsanders for Converting x/y values in camera view to pan/tilt valuesnsanders2009-09-14T23:57:10Z2009-09-14T23:57:10Z<p>You gave the "view" size in pixels. What you need to know is the Field of View (FOV), which is measured in degrees. From that you can tell the number of degrees from center to the image edges.</p>
<p>You might be able to find the FOV in your camera's technical specifications. (It's determined by the detector array size and the focal length). Alternatively, you could try measuring it. Here's a webpage that explains how:</p>
<p><a href="http://www.panohelp.com/lensfov.html" rel="nofollow">http://www.panohelp.com/lensfov.html</a></p>
http://stackoverflow.com/questions/1079008/how-to-profile-each-call-to-a-function/1079492#1079492-1Answer by nsanders for How to profile each call to a function?nsanders2009-07-03T14:02:12Z2009-07-03T14:02:12Z<p>I think Apple's Shark profiling tool can generate the mean for each function. Of course, that only helps you on a Mac.</p>
http://stackoverflow.com/questions/1046248/what-are-some-recommended-frameworks-for-manipulating-spatial-data-in-c/1059898#10598980Answer by nsanders for What are some recommended frameworks for manipulating spatial data in C++?nsanders2009-06-29T19:00:27Z2009-06-29T19:00:27Z<p>It's not comprehensive and high-level enough for what you asked, but for doing geodetic transforms you can use the NGA's excellent GEOTRANS library:</p>
<p><a href="http://earth-info.nga.mil/GandG/geotrans/" rel="nofollow">http://earth-info.nga.mil/GandG/geotrans/</a></p>
<p>That will let you convert between things like WGS84 lat/long and a local cartesian coordinate system. The C code is well tested, documented, and is public domain.</p>
http://stackoverflow.com/questions/38461/what-can-software-developers-do-to-be-more-green/38473#384735Answer by nsanders for What can software developers do to be more "green"?nsanders2008-09-01T21:38:43Z2009-06-29T16:17:20Z<p>I think this question is being posed to the wrong side of the process.</p>
<p>Software engineering is just an enabling tool. The product it's applied to is where the environmental friendliness comes in. e.g. requirements that allow PDF rather than hard-copy reports for a financial system.</p>
<p>It's similar to asking "can we make chemistry more green?". A better query on the applied side: can we make rocket propellant less environmentally damaging. </p>
http://stackoverflow.com/questions/1042281/c-for-loop-temporary-variable-use/1042291#10422912Answer by nsanders for c++ for loop temporary variable usensanders2009-06-25T05:15:58Z2009-06-25T05:15:58Z<p>Unless you need the loop variable outside the loop, the second approach is preferable.</p>
<p>Iterators will actually give you as good or better performance. (There was a big comparison thread on comp.lang.c++.moderated a few years back).</p>
<p>Also, I would use</p>
<pre><code>int i = 0;
</code></pre>
<p>Rather than the constructor like syntax you're using. While valid, it's not idiomatic. </p>
http://stackoverflow.com/questions/1036359/what-is-the-best-way-to-develop-a-c-web-application/1036366#10363663Answer by nsanders for What is the best way to develop a C++ web application?nsanders2009-06-24T04:17:09Z2009-06-24T04:17:09Z<p>I'm saying this as a C++ developer...</p>
<p>I would probably consider using Java instead. Since Java is much more commonly used for this, you'll find way more existing libraries to leverage. If you ever want to hire more people, you'll have an easier time finding web-app Java developers than web-app C++ developers.</p>
<p>If you insist using C++, check out:</p>
<p><a href="http://rudeserver.com/" rel="nofollow">http://rudeserver.com/</a></p>
http://stackoverflow.com/questions/1026693/how-can-i-obtain-a-lavectordouble-object-which-is-a-submatrixview-of-a-lagenmatdo/1036360#10363601Answer by nsanders for How can I obtain a LaVectorDouble object which is a submatrixview of a LaGenMatDouble?nsanders2009-06-24T04:14:59Z2009-06-24T04:14:59Z<p>I suspect this routine does a deep-copy of the data:</p>
<p><a href="http://lapackpp.sourceforge.net/html/classLaVectorDouble.html#be11700fe7c277501329b2d23f485630" rel="nofollow">http://lapackpp.sourceforge.net/html/classLaVectorDouble.html#be11700fe7c277501329b2d23f485630</a></p>
<p>This ref() routine might let you maintain the shared memory:</p>
<p><a href="http://lapackpp.sourceforge.net/html/classLaVectorDouble.html#191850a7e8993a977a3a545b87dc7528" rel="nofollow">http://lapackpp.sourceforge.net/html/classLaVectorDouble.html#191850a7e8993a977a3a545b87dc7528</a></p>
http://stackoverflow.com/questions/1015509/c-library-for-session-management/1036333#10363330Answer by nsanders for C++ Library for session management?nsanders2009-06-24T04:03:32Z2009-06-24T04:03:32Z<p>I've never used it, but I came across this:</p>
<p><a href="http://rudeserver.com/session/index.html" rel="nofollow">http://rudeserver.com/session/index.html</a></p>
http://stackoverflow.com/questions/1033501/enumerating-all-strings-meeting-given-restrictions2Enumerating all strings meeting given restrictionsnsanders2009-06-23T15:56:29Z2009-06-23T17:10:00Z
<p>I'm looking for the name of the following class of problem, so that I can google for effective algorithms and more information.</p>
<p>I have an alphabet with three characters {-1, 0, 1}.</p>
<p>I need to effectively generate all strings of length 24 which are mostly {0} but have zero to eight {1,-1} characters distributed in certain patterns. (The patterns involve restrictions on the number and pairings of {-1}). The total number strings that meet my criteria are quite modest: about 128,000.</p>
<p>So what is the name for this class of problem/algorithm? </p>
http://stackoverflow.com/questions/1028636/cgal-erroneous-delaunay-result/1030858#10308583Answer by nsanders for CGAL: erroneous Delaunay result?nsanders2009-06-23T06:11:57Z2009-06-23T06:11:57Z<p>Are you using a regular rather than a Delaunay triangulation? </p>
<p>You are using the following, right?</p>
<pre><code>CGAL::Delaunay_triangulation_2<Traits,Tds>
</code></pre>
<p><a href="http://www.cgal.org/Manual/3.4/doc_html/cgal_manual/Triangulation_2_ref/Class_Delaunay_triangulation_2.html#Cross_link_anchor_1152" rel="nofollow">http://www.cgal.org/Manual/3.4/doc_html/cgal_manual/Triangulation_2_ref/Class_Delaunay_triangulation_2.html#Cross_link_anchor_1152</a></p>
http://stackoverflow.com/questions/1024904/calculating-hamming-weight-efficiently-in-matlab2Calculating Hamming weight efficiently in matlabnsanders2009-06-21T22:40:05Z2009-06-22T07:40:42Z
<p>Given a MATLAB uint32 to be interpreted as a bit string, what is an efficient and concise way of counting how many nonzero bits are in the string? </p>
<p>I have a working, naive approach which loops over the bits, but that's too slow for my needs. (A C++ implementation using std::bitset count() runs almost instantly).</p>
<p>I've found a pretty nice page listing various bit counting techniques, but I'm hoping there is an easy MATLAB-esque way.</p>
<p><a href="http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetNaive" rel="nofollow">http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetNaive</a></p>
<p><BR><b>Update #1</B></p>
<p>Just implemented the Brian Kernighan algorithm as follows:</p>
<pre><code>w = 0;
while ( bits > 0 )
bits = bitand( bits, bits-1 );
w = w + 1;
end
</code></pre>
<p>Performance is still crappy, over 10 seconds to compute just 4096^2 weight calculations. My C++ code using count() from std::bitset does this in subsecond time.</p>
<p><BR><B>Update #2</B></p>
<p>Here is a table of run times for the techniques I've tried so far. I will update it as I get additional ideas/suggestions.</p>
<p><PRE>
Vectorized Scheiner algorithm => 2.243511 sec
Vectorized Naive bitget loop => 7.553345 sec
Kernighan algorithm => 17.154692 sec
length( find( bitget( val, 1:32 ) ) ) => 67.368278 sec
nnz( bitget( val, 1:32 ) ) => 349.620259 sec
Justin Scheiner's algorithm, unrolled loops => 370.846031 sec
Justin Scheiner's algorithm => 398.786320 sec
Naive bitget loop => 456.016731 sec
sum(dec2bin(val) == '1') => 1069.851993 sec
</PRE></p>
<p><BR>
<I>Comment</I>: The dec2bin() function in MATLAB seems to be very poorly implemented. It runs extremely slow.</p>
<p><I>Comment</I>: The "Naive bitget loop" algorithm is implemented as follows:</p>
<pre><code>w=0;
for i=1:32
if bitget( val, i ) == 1
w = w + 1;
end
end
</code></pre>
<p><I>Comment</I>:
The loop unrolled version of Scheiner's algorithm looks as follows:</p>
<pre><code>function w=computeWeight( val )
w = val;
w = bitand(bitshift(w, -1), uint32(1431655765)) + ...
bitand(w, uint32(1431655765));
w = bitand(bitshift(w, -2), uint32(858993459)) + ...
bitand(w, uint32(858993459));
w = bitand(bitshift(w, -4), uint32(252645135)) + ...
bitand(w, uint32(252645135));
w = bitand(bitshift(w, -8), uint32(16711935)) + ...
bitand(w, uint32(16711935));
w = bitand(bitshift(w, -16), uint32(65535)) + ...
bitand(w, uint32(65535));
</code></pre>
http://stackoverflow.com/questions/1024968/64bit-shift-problem/1024982#10249822Answer by nsanders for 64bit shift problem.nsanders2009-06-21T23:11:51Z2009-06-21T23:11:51Z<p>This warning from the compiler should be a hint:</p>
<p>"warning: right shift count >= width of type"</p>
<p>This results in undefined behavior:</p>
<p><a href="http://sourcefrog.net/weblog/software/languages/C/bitshift.html" rel="nofollow">http://sourcefrog.net/weblog/software/languages/C/bitshift.html</a></p>
http://stackoverflow.com/questions/1024915/compare-three-dimensional-structures/1024967#10249671Answer by nsanders for Compare three-dimensional structuresnsanders2009-06-21T23:05:56Z2009-06-21T23:05:56Z<p>There a bunch of SIGGRAPH publications which may prove helpful to you.</p>
<p>e.g. "Global Non-Rigid Alignment of 3-D Scans" by Brown and Rusinkiewicz:</p>
<p><a href="http://portal.acm.org/citation.cfm?id=1276404" rel="nofollow">http://portal.acm.org/citation.cfm?id=1276404</a></p>
<p>A general search that can get you started:</p>
<p><a href="http://scholar.google.com/scholar?q=siggraph+point+cloud+registration" rel="nofollow">http://scholar.google.com/scholar?q=siggraph+point+cloud+registration</a></p>
http://stackoverflow.com/questions/1014293/2d-outline-algorithm-for-projected-3d-mesh/1014362#10143622Answer by nsanders for 2d outline algorithm for projected 3d meshnsanders2009-06-18T18:22:22Z2009-06-18T19:29:45Z<p>The alpha shapes technique mentioned in this question handles a general set of points where the vertex connections are not known:</p>
<p><a href="http://stackoverflow.com/questions/83593/is-there-an-efficient-algorithm-to-generate-a-2d-concave-hull/83780#83780">http://stackoverflow.com/questions/83593/is-there-an-efficient-algorithm-to-generate-a-2d-concave-hull/83780#83780</a></p>
<p>However, since you already know "face" information which can be preserved through the projection, it is probably not the best approach.</p>
<p>A brute force algorithm might feasible, especially if spatial sorting structures where used. eg for each facet:</p>
<ol>
<li>Project facet on to the plane</li>
<li>Check if projected facet is completely enclosed by existing geometry, if yes: done (no need to expand projected silhouette) </li>
<li>If points fall outside the existing geometry, do triangle-triangle intersections to determine which portions fall outside, build an arbitrary n-gon (possibly concave) to fill the missing space, then chop the n-gon in to triangles</li>
</ol>
<p>Another idea, depending on the fidelity you require, is just shoot a bunch of rays normal from your projection plane to your original geometry. Create a 2d hit/miss and use that to determine your extents.</p>
http://stackoverflow.com/questions/1009240/qt-build-error/1009292#10092921Answer by nsanders for Qt Build Errornsanders2009-06-17T20:12:11Z2009-06-17T20:12:11Z<p>Check this post out from the QT mailing lists:</p>
<p><a href="http://lists.trolltech.com/pipermail/qt-embedded-interest/2009-March/000224.html" rel="nofollow">http://lists.trolltech.com/pipermail/qt-embedded-interest/2009-March/000224.html</a></p>
http://stackoverflow.com/questions/1003839/how-to-find-all-naive-based-string-concatenations-in-large-java-codebase/1003853#100385310Answer by nsanders for How to find all naive ("+" based) string concatenations in large Java codebase?nsanders2009-06-16T20:46:15Z2009-06-16T20:46:15Z<p>Why not use a profiler to find the "naive" string concatenations that actually matter? Only switch over to the more verbose StringBuffer if you actually need it.</p>
http://stackoverflow.com/questions/1003749/ftp-server-with-database-driven-content/1003763#10037630Answer by nsanders for FTP Server with database driven content?nsanders2009-06-16T20:24:54Z2009-06-16T20:24:54Z<p>The FTP protocol is actually quite simple. It is not too tough to roll your own server if you don't find anything pre-packaged:</p>
<p><a href="http://www.faqs.org/rfcs/rfc959.html" rel="nofollow">http://www.faqs.org/rfcs/rfc959.html</a></p>
http://stackoverflow.com/questions/957310/suggestions-on-a-project-in-c-distributed-systems-networks/1003104#10031040Answer by nsanders for suggestions on a project in C++ / distributed systems / networksnsanders2009-06-16T18:15:47Z2009-06-16T18:15:47Z<p>You could do a project on ad-hoc communication networks between vehicles. There is an open-source traffic simulation model called SUMO which you can leverage. The wiki for SUMO lists a bunch of existing research and tools that you can use as a starting point: </p>
<p><a href="http://sourceforge.net/apps/mediawiki/sumo/index.php?title=Main_Page#Related_to_C2C" rel="nofollow">http://sourceforge.net/apps/mediawiki/sumo/index.php?title=Main_Page#Related_to_C2C</a></p>
http://stackoverflow.com/questions/921422/is-there-fortran-subroutine-in-lapack-blas-or-somewhere-else-to-calculate-ldl-dec/992235#9922351Answer by nsanders for Is there Fortran subroutine in LAPACK/BLAS or somewhere else to calculate LDL decomposition?nsanders2009-06-14T05:19:33Z2009-06-16T16:32:28Z<p>Check out the SSPTRF function from LAPACK:</p>
<blockquote>
Purpose<BR>
=======
<BR><BR>
SSPTRF computes the factorization of a real symmetric matrix A stored
in packed format using the Bunch-Kaufman diagonal pivoting method:
<BR><BR>
A = U*D*U**T or A = L*D*L**T
<BR><BR>
where U (or L) is a product of permutation and unit upper (lower)
triangular matrices, and D is symmetric and block diagonal with
1-by-1 and 2-by-2 diagonal blocks.
<BR><BR>
</blockquote>
<p>Also, Golub and van Loan's "Matrix Computations" book gives an algorithm for doing the decomposition. In my third edition, it's on page 138, Section 4.1.2 "Symmetry and the LDL^T Factorization".</p>
http://stackoverflow.com/questions/999549/finding-min-max-of-quadratic-bezier-with-coregraphics/999620#9996201Answer by nsanders for Finding min/max of quadratic bezier with CoreGraphicsnsanders2009-06-16T04:51:35Z2009-06-16T04:51:35Z<p>Calculus gives the standard box of tricks for finding the min/max of continuous, differentiable curves. </p>
<p>Here is a sample discussion:</p>
<p><a href="http://newsgroups.derkeiler.com/Archive/Comp/comp.graphics.algorithms/2005-07/msg00334.html" rel="nofollow">http://newsgroups.derkeiler.com/Archive/Comp/comp.graphics.algorithms/2005-07/msg00334.html</a></p>
http://stackoverflow.com/questions/999570/integer-out-of-range-on-postgres-db/999594#9995942Answer by nsanders for Integer out of range on Postgres DBnsanders2009-06-16T04:40:39Z2009-06-16T04:40:39Z<p>What's the question? You are overflowing. Use a bigint if you need numbers that big.</p>
<p><a href="http://www.postgresql.org/docs/8.3/interactive/datatype-numeric.html" rel="nofollow">http://www.postgresql.org/docs/8.3/interactive/datatype-numeric.html</a></p>
http://stackoverflow.com/questions/997924/c-best-practices/998057#9980573Answer by nsanders for C++ best practicesnsanders2009-06-15T19:54:44Z2009-06-15T19:54:44Z<p>Check out "<A HREF="http://rads.stackoverflow.com/amzn/click/0321113586" rel="nofollow">Coding Standards</A>" by Sutter and Alexandrescu in addition to the Effective C++ recommendations. </p>
http://stackoverflow.com/questions/997106/efficient-comparison-of-100-000-vectors/997120#9971201Answer by nsanders for Efficient comparison of 100.000 vectorsnsanders2009-06-15T16:43:55Z2009-06-15T17:38:38Z<p>So the following information can be cached:</p>
<ul>
<li>Norm of the chosen vector</li>
<li>The dot product A.B, reusing it for both the numerator and the denominator in a given T(A,B) calculation.</li>
</ul>
<p>If you only need the N closest vectors or if you are doing this same sorting process multiple times, there may be further tricks available. (Observations like T(A,B)=T(B,A), caching the vector norms for all the vectors, and perhaps some sort of thresholding/spatial sort).</p>
http://stackoverflow.com/questions/942399/how-to-redefine-clogs-rdbuf-to-be-a-tee-to-the-original-rdbuf-of-clog-and-th/993795#9937952Answer by nsanders for How to redefine clog's rdbuf() to be a tee to the original rdbuf() of clog and that of a log file?nsanders2009-06-14T21:26:06Z2009-06-14T21:26:06Z<p>You will have to write a custom streambuf derived class. Have it spit out data to to both your ofstream's rdbuf and your original clog rdbuf.</p>
<p>A general example of writing a custom streambuf:</p>
<p><a href="http://www.dreamincode.net/code/snippet2499.htm" rel="nofollow">http://www.dreamincode.net/code/snippet2499.htm</a></p>
<p>Stashing the new stream buffer can be done as follows:</p>
<pre><code>// grab buffer for clog
std::streambuf* oldClogBuf = std::clog.rdbuf();
// create custom buffer which feeds both clog and an ofstream
CustomBuffer* customBuf = new CustomBuffer( oldClogBuf );
// stash custom buffer
std::clog.rdbuf( customBuf );
...do stuff...
// restore original clog buffer
std::clog.rdbuf( oldClogBuf );
</code></pre>
<p>You can make the whole thing more robust by using the RAII idiom to manage the buffer switching.</p>
http://stackoverflow.com/questions/446573/best-tool-for-step-iges-to-stl-conversion/992218#9922181Answer by nsanders for best tool for step/iges to stl conversion?nsanders2009-06-14T05:02:57Z2009-06-14T05:02:57Z<p>Try BRL-CAD:</p>
<p><a href="http://brlcad.org/" rel="nofollow">http://brlcad.org/</a></p>
<p>The documentation claims it can import STEP/IGES:</p>
<p><a href="http://brlcad.org/wiki/Documentation" rel="nofollow">http://brlcad.org/wiki/Documentation</a></p>
http://stackoverflow.com/questions/989366/structuring-a-revision-control-system-svn-to-handle-dependencies/989489#9894892Answer by nsanders for ? Structuring a Revision Control System (SVN) to Handle Dependenciesnsanders2009-06-12T23:23:22Z2009-06-12T23:23:22Z<p>The subversion book, free online, gives several suggested repository configurations:</p>
<p><a href="http://svnbook.red-bean.com/" rel="nofollow">http://svnbook.red-bean.com/</a></p>
<p>This page gives good links on further reading:</p>
<p><a href="http://svnbook.red-bean.com/en/1.5/svn.tour.importing.html#svn.tour.importing.layout" rel="nofollow">http://svnbook.red-bean.com/en/1.5/svn.tour.importing.html#svn.tour.importing.layout</a></p>
<p>One very nice thing about SVN, which is not true for CVS, is that moving around directories is pretty trivial. So don't feel pressured to come up with a "final" organization right of the bat. Do something that works, play with structure till you like it more.</p>
<p>One other thing worth mentioning, SVN uses a copy-on-write technique for data. So feel free to make "svn cp" copies of entire directories whenever you need to.</p>
http://stackoverflow.com/questions/961682/c-2d-integration-libraries/989403#9894032Answer by nsanders for C++ 2D Integration Librariesnsanders2009-06-12T22:46:23Z2009-06-12T22:46:23Z<p>It's actually a C library, but if the GPL licensing terms work for you try:</p>
<p><a href="http://www.gnu.org/software/gsl/" rel="nofollow">http://www.gnu.org/software/gsl/</a></p>
<p>You will want to check out the Monte Carlo integration options outlined here:</p>
<p><a href="http://www.gnu.org/software/gsl/manual/html_node/Monte-Carlo-Integration.html" rel="nofollow">http://www.gnu.org/software/gsl/manual/html_node/Monte-Carlo-Integration.html</a></p>
http://stackoverflow.com/questions/1717773/which-sorting-algorithm-is-used-by-stls-listsort/1717794#1717794Comment by nsanders on Which sorting algorithm is used by STL's list::sort()?nsanders2009-11-11T20:21:01Z2009-11-11T20:21:01ZThat is the std::sort from <algorithm>. That actually wouldn't work with std::list since list does not provided random access iterators. He is talking about std::list::sort().http://stackoverflow.com/questions/1024904/calculating-hamming-weight-efficiently-in-matlab/1025050#1025050Comment by nsanders on Calculating Hamming weight efficiently in matlabnsanders2009-06-22T02:55:15Z2009-06-22T02:55:15ZIt's crappy that I can only mark one "accepted" answer. You gave the vectorization idea; Scheiner gave the algorithm. Thank you very much gnovice.http://stackoverflow.com/questions/1024904/calculating-hamming-weight-efficiently-in-matlab/1025209#1025209Comment by nsanders on Calculating Hamming weight efficiently in matlabnsanders2009-06-22T02:41:01Z2009-06-22T02:41:01ZVectorizing this code for my inner loop leads to 2.25 second performance. (Same outline as with gnovice's solution).http://stackoverflow.com/questions/1024904/calculating-hamming-weight-efficiently-in-matlab/1025050#1025050Comment by nsanders on Calculating Hamming weight efficiently in matlabnsanders2009-06-22T02:36:22Z2009-06-22T02:36:22ZVery nice! I actually have a pair of loops each going from 1 to 4096. I vectorized the inner loop using your technique and overall runtime is at ~7.55 sec. I did have to pass in 'uint32' as my type to zeroes(4096,1,'uint32') for MATLAB to be happy. Trying now with outer loop vectorized too.http://stackoverflow.com/questions/1024904/calculating-hamming-weight-efficiently-in-matlab/1025209#1025209Comment by nsanders on Calculating Hamming weight efficiently in matlabnsanders2009-06-22T02:19:12Z2009-06-22T02:19:12ZI'm actually running a loop unrolled version right now. I am surprised by this methods poor performance in the looped version; I also thought it would be fastest.http://stackoverflow.com/questions/1024904/calculating-hamming-weight-efficiently-in-matlab/1025209#1025209Comment by nsanders on Calculating Hamming weight efficiently in matlabnsanders2009-06-22T01:46:29Z2009-06-22T01:46:29ZI just posted performance using your pre-edit algorithm. This was with hex2dec pre-computed. I'm going to double check whether I did everything correctly and also try your cleaned up code.http://stackoverflow.com/questions/1024904/calculating-hamming-weight-efficiently-in-matlab/1025121#1025121Comment by nsanders on Calculating Hamming weight efficiently in matlabnsanders2009-06-22T00:34:30Z2009-06-22T00:34:30ZCalling an external routine is pretty unappealing for my application. I'm still hoping to drop the MATLAB code run time to a few seconds. http://stackoverflow.com/questions/1024904/calculating-hamming-weight-efficiently-in-matlab/1025050#1025050Comment by nsanders on Calculating Hamming weight efficiently in matlabnsanders2009-06-22T00:29:26Z2009-06-22T00:29:26ZThe cast to double is not needed. You're technique works. Unfortunately, dec2bin() is dirt slow. I'm compiling a table of runtimes for all my approaches, and dec2bin is still running. (Well past the other techniques in terms of time).http://stackoverflow.com/questions/1014293/2d-outline-algorithm-for-projected-3d-mesh/1015709#1015709Comment by nsanders on 2d outline algorithm for projected 3d meshnsanders2009-06-19T16:38:08Z2009-06-19T16:38:08ZWhat happens if you project a torus on to the x-y plane? This won't get the interior "hole".http://stackoverflow.com/questions/275458/conversion-of-fortran-77-code-to-c/275466#275466Comment by nsanders on Conversion of Fortran 77 code to C++nsanders2009-06-17T20:18:27Z2009-06-17T20:18:27ZI used f2c on a moderate size fortran code several years back. The already poor quality (readability terms) fortran code dropped to horrendous after going through the translation. It took a lot of manual effort to polish to readable C.http://stackoverflow.com/questions/1008934/why-cant-i-replace-the-movie-clip-in-this-example-with-anotherComment by nsanders on Why can't I replace the movie clip in this example with another?nsanders2009-06-17T18:56:01Z2009-06-17T18:56:01ZThe title on your question is terrible. http://stackoverflow.com/questions/997106/efficient-comparison-of-100-000-vectors/997120#997120Comment by nsanders on Efficient comparison of 100.000 vectorsnsanders2009-06-15T16:52:46Z2009-06-15T16:52:46ZI apologize. I misread and thought you were performing this calculation for multiple vectors as you would in clustering algorithms. You can at least still cache the norm of your chosen vector and reuse the dot product in numerator/denominator.http://stackoverflow.com/questions/966688/show-window-in-qt-without-stealing-focusComment by nsanders on Show window in Qt without stealing focusnsanders2009-06-14T05:07:53Z2009-06-14T05:07:53ZYou may have better luck asking this question on <lists.trolltech.com>