User David Norman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T14:36:27Zhttp://stackoverflow.com/feeds/user/34502http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1852357/multiplying-by-inverse-matrices/1852378#18523788Answer by David Norman for Multiplying by inverse matrices?David Norman2009-12-05T14:48:57Z2009-12-05T14:56:45Z<p>If you multiply on the right by the inverse of Projection, you will get World*View.</p>
<p>If you multiply on the left you'll get something entirely different, since matrix multiplication isn't commutative.</p>
<p>This assumes that Projection has an inverse. Not all matrices do. </p>
http://stackoverflow.com/questions/1841014/uniform-random-monte-carlo-distribution-on-unit-sphere/1841120#18411204Answer by David Norman for Uniform random (Monte-Carlo) distribution on unit sphere.David Norman2009-12-03T16:29:57Z2009-12-03T16:29:57Z<p><a href="http://mathworld.wolfram.com/SpherePointPicking.html" rel="nofollow">Here's</a> an algorithm that allows you to generate points randomly distributed on the unit sphere.</p>
http://stackoverflow.com/questions/1137690/smallest-set-of-rectangles-describing-a-set-of-integer-points/1829484#18294840Answer by David Norman for Smallest set of rectangles describing a set of integer pointsDavid Norman2009-12-01T22:48:05Z2009-12-01T22:48:05Z<p>I assume that you are willing to tolerate overlapping rectangles, since if the points are</p>
<pre><code>4 .###.
3 ..#..
2 .###.
1 ..#..
0 .###.
01234
</code></pre>
<p>then you can cover with four overlapping rectangles, but would need five non-overlapping.</p>
<p>How about this algorithm:</p>
<p>For each point, find a largest rectangle containing that point. A largest rectangle is one that can't be made any bigger and still just cover the points. If there are two largest rectangles, just pick one. Store that largest rectangle in some sort of data structure that removes duplicates. After you've finished iterating over all the points, the set of rectangles must cover all the points.</p>
<p>I don't know if this is actually a minimal set of rectangles, but I suspect it is.</p>
<p>Note that in the example above, you would get three rectangles: One vertical and two horizontal.</p>
http://stackoverflow.com/questions/1710334/how-do-i-get-notification-that-the-local-visual-studio-build-is-complete/1710384#17103840Answer by David Norman for How do I get notification that the local Visual Studio build is complete?David Norman2009-11-10T19:03:53Z2009-11-10T19:03:53Z<p>Go to Start -> Control Panel -> Sounds and Audio Devices. Then on the Sounds tab you'll find a set of sounds for Microsoft Visual Studio in the Program Events list. You can attach a sound to build finishing, etc.</p>
http://stackoverflow.com/questions/1683461/generating-a-gaussian-distribution-with-only-positive-numbers/1683498#16834985Answer by David Norman for Generating a gaussian distribution with only positive numbersDavid Norman2009-11-05T20:49:19Z2009-11-05T20:49:19Z<p>You could use a <a href="http://en.wikipedia.org/wiki/Log-normal%5Fdistribution" rel="nofollow">log-normal</a> distribution.</p>
http://stackoverflow.com/questions/1580185/data-structure-for-quick-time-interval-look-up5Data structure for quick time interval look up.David Norman2009-10-16T20:15:35Z2009-10-17T00:24:25Z
<p>I have a set of time intervals <em>In = (an, bn)</em>. I need to run lots of look ups where I'm given a time <em>t</em> and need to quickly return the intervals that contain <em>t</em>, e.g., those intervals such that <em>an <= t <= bn</em>.</p>
<p>What is a good data structure or algorithm for this?</p>
<p>If it matters, in my case the <em>an</em> and <em>bn</em> are integers.</p>
http://stackoverflow.com/questions/1245968/least-squares-solution-to-simultaneous-equations/1246090#12460904Answer by David Norman for Least Squares solution to simultaneous equationsDavid Norman2009-08-07T17:44:17Z2009-08-07T17:44:17Z<p>To find P, Q, R, and S, then you can use least squares. I think the confusing thing is that that usual description of least squares uses x and y, but they don't match the x and y in your problem. You just need translate your problem carefully into the least squares framework. In your case the independent variables are the untransformed coordinates x and y, the dependent variables are the transformed coordinates x' and y', and the adjustable parameters are P, Q, R, and S. (If this isn't clear enough, let me know and I'll post more detail.)</p>
<p>Once you've found P, Q, R, and S, then scale = sqrt(P^2 + Q^2) and you can then find the rotation from sin rotation = Q / scale and cos rotation = P / scale.</p>
http://stackoverflow.com/questions/1223828/what-is-the-best-inline-file-comparer-for-windows/1223854#12238544Answer by David Norman for What is the best inline file comparer for Windows?David Norman2009-08-03T18:23:01Z2009-08-03T18:23:01Z<p>I like SourceGear's free <a href="http://www.sourcegear.com/diffmerge/" rel="nofollow">diffmerge</a>. They built it to work with their source control systems, so it's pretty feature-rich.</p>
http://stackoverflow.com/questions/1213275/technical-name-for-a-region-of-memory-with-a-fixed-pattern-for-bounds-checking/1213311#12133115Answer by David Norman for Technical name for a region of memory with a fixed pattern for bounds checking?David Norman2009-07-31T15:46:57Z2009-07-31T15:46:57Z<p>I've heard guard block before.</p>
http://stackoverflow.com/questions/1209005/are-there-any-good-tutorials-that-describe-how-to-use-antlr-to-parse-boolean-sear/1209464#12094640Answer by David Norman for Are there any good tutorials that describe how to use ANTLR to parse boolean search stringsDavid Norman2009-07-30T21:23:38Z2009-07-30T21:23:38Z<p>I'd probably do this with straight text processing. Essentially what you want to do is take the original expression, pull out all the colors and replace them with the CONTAINS clause. In pseudocode:</p>
<pre><code>list of tokens = split input expression into tokens separated by spaces
foreach token in tokens
if token is not keyword
text = "CONTAINS(Description, \"" + token + "\")"
else
text = token
output = output + text
end
</code></pre>
<p>Where the keywords are "(", "AND", etc. You then just put the output in your SQL statement</p>
<p>< insert warning about SQL injection attacks here ></p>
http://stackoverflow.com/questions/1181061/recursion-iteration-troubles-transforming-an-array-of-words-into-phrases/1181127#11811271Answer by David Norman for Recursion/iteration troubles, transforming an array of words into phrasesDavid Norman2009-07-25T03:38:29Z2009-07-25T03:38:29Z<p>How about an implementation in C#? Unfortunately, the list manipulation hides the algorithm a bit.</p>
<pre><code>using System.Collections.Generic;
namespace CSharpTest
{
class Program
{
static List<List<string>> BuildResult(List<List<string>> curPhrases, List<List<string>> words)
{
// Each step in the recursion removes the first list of
// words and creates a new list of phrases that contains
// all combinations of a previous phrase and a word.
// Remove the words to be added
List<string> wordsToAdd = words[0];
words.RemoveAt(0);
// Construct the new list of phrases
List<List<string>> newPhrases = new List<List<string>>();
foreach (string word in wordsToAdd)
{
foreach (List<string> curPhrase in curPhrases) {
// Create the new phrase
List<string> newPhrase = new List<string>();
newPhrase.AddRange(curPhrase);
newPhrase.Add(word);
// Add it to the list.
newPhrases.Add(newPhrase);
}
}
if (words.Count > 0)
{
// Recurse
return BuildResult(newPhrases, words);
}
// No more words, so we're done.
return newPhrases;
}
static void Main(string[] args)
{
List<List<string>> words
= new List<List<string>> {
new List<string> { "big", "small", "wild" },
new List<string> { "brown", "black", "spotted"},
new List<string> { "cat", "dog" } };
WriteWords(words);
// Initialize the recursion with an empty list
List<List<string> > emptyList = new List<List<string>> { new List<string>() };
List<List<string>> result = BuildResult(emptyList, words);
WriteWords(result);
}
static void WriteWords(List<List<string>> words)
{
foreach (List<string> wordList in words)
{
foreach (string word in wordList)
{
System.Console.Write(word + " ");
}
System.Console.WriteLine("");
}
}
}
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1175218/whats-a-good-language-for-validating-csv-files/1175249#11752490Answer by David Norman for What's a good language for validating CSV files?David Norman2009-07-24T00:35:32Z2009-07-24T00:35:32Z<p>There are perl modules that manipulate CSV files, e.g, <a href="http://search.cpan.org/~makamaka/Text-CSV-1.12/lib/Text/CSV.pm" rel="nofollow">Text::CSV</a>.</p>
http://stackoverflow.com/questions/1151358/operator-overloading-for-objects-in-multiple-classes/1151410#11514101Answer by David Norman for Operator Overloading for Objects in Multiple ClassesDavid Norman2009-07-20T01:33:58Z2009-07-20T01:33:58Z<p>You don't specify the type of bookcheckout, so I can't be sure, but I think that your operator== will work without change.</p>
<p>For instance, if the code is:</p>
<pre><code>class Library
{
public:
const Book & operator[] (int i);
};
Library bookcheckout;
</code></pre>
<p>Then your if statement will call the operator== you have without a problem.</p>
http://stackoverflow.com/questions/1117674/why-is-multiplying-cheaper-than-dividing/1117702#11177024Answer by David Norman for Why is multiplying cheaper than dividing?David Norman2009-07-13T04:30:03Z2009-07-13T04:30:03Z<p>If you think back to grade school, you'll recall that multiplication was harder than addition and division was harder than multiplication. Things aren't any different for the CPU. </p>
<p>Recall also that calculating the reciprocal involves a division, so unless you calculate the reciprocal once and use it three times, you won't see a speed up.</p>
http://stackoverflow.com/questions/1112531/what-is-the-best-way-to-use-two-keys-with-a-stdmap/1112543#111254319Answer by David Norman for What is the best way to use two keys with a std::map?David Norman2009-07-11T00:15:58Z2009-07-11T00:15:58Z<p>Use std::pair<int32,int32> for the key:</p>
<pre><code>std::map<std::pair<int,int>, int> myMap;
myMap[std::make_pair(10,20)] = 25;
std::cout << myMap[std::make_pair(10,20)] << std::endl;
</code></pre>
http://stackoverflow.com/questions/1081409/why-should-i-use-asserts/1081488#10814884Answer by David Norman for Why should I use asserts?David Norman2009-07-04T04:29:15Z2009-07-04T04:29:15Z<p>Because they make debugging easier.</p>
<p>The time consuming part of debugging is tracing a problem from the symptom you first notice back to the error in the code. Well written assertions will make the symptom you notice much closer to the actual code problem.</p>
<p>A very simple example would be a bug where you index past the end of an array and cause memory corruption which eventually causes a crash. It can take a long time to trace back from the crash to the offending index operation. However, if you have an assertion next to that index operation that checks your index, then your program will fail right next to the error, so you'll be able to find the problem quickly.</p>
http://stackoverflow.com/questions/958989/collection-values-changing-in-for-loop/959002#9590021Answer by David Norman for Collection Values Changing in for loopDavid Norman2009-06-06T04:31:25Z2009-06-06T04:31:25Z<p>The problem is that the variable cr is the same both times through the loop, so both times through the loop the same object is being modified and the same object is getting added to the ArrayList twice.</p>
<p>You don't show enough of the code to show where cr is declared.</p>
<p>Do you need to do something like</p>
<pre><code>for (int i = 0; i < FirstNames.Count; i++)
{
CRObject cr = new CRObject();
cr.Firstname = (string)FirstNames[i];
cr.Lastname = (string)LastNames[i];
if (FirstNames.Count > 1)
{
cr.Tif = baseTif + increment.ToString();
increment++;
}
CaseRecordItems.Add(cr);
}
</code></pre>
http://stackoverflow.com/questions/639694/are-c-static-code-analyis-tools-worth-it10Are C++ static code analyis tools worth it?David Norman2009-03-12T17:38:23Z2009-05-31T11:11:49Z
<p>Our management has recently been talking to some people selling C++ <a href="http://en.wikipedia.org/wiki/List%5Fof%5Ftools%5Ffor%5Fstatic%5Fcode%5Fanalysis" rel="nofollow">static analysis tools</a>. Of course the sales people say they will find tons of bugs, but I'm skeptical.</p>
<p>How do such tools work in the real world? Do they find real bugs? Do they help more junior programmers learn?</p>
<p>Are they worth the trouble?</p>
http://stackoverflow.com/questions/757667/perl-script-to-parse-output-of-cvs-log-command0Perl script to parse output of cvs log commandDavid Norman2009-04-16T19:24:08Z2009-04-16T20:18:53Z
<p>Does anyone have a perl script or package that parses the output of a cvs log command and turns it into perl structures for further processing?</p>
http://stackoverflow.com/questions/721734/statistical-calculations-in-sql-server1Statistical calculations in SQL ServerDavid Norman2009-04-06T14:34:03Z2009-04-13T14:30:04Z
<p>Does anyone know of any packages or source code that does simple statistical analysis, e.g., confidence intervals or ANOVA, inside a SQL Server stored procedure?</p>
http://stackoverflow.com/questions/729640/optimal-layout-algorithm/729699#7296991Answer by David Norman for Optimal Layout AlgorithmDavid Norman2009-04-08T12:18:36Z2009-04-08T12:18:36Z<p>This is known as the rectangle packing problem. Even in very simple cases, finding the optimal solution is NP-hard, although often there are good heuristics. Googling rectangle packing gives some interesting algorithms and code.</p>
http://stackoverflow.com/questions/676123/why-is-http-soap-considered-to-be-thick/676157#6761572Answer by David Norman for (Why) Is HTTP/SOAP considered to be "thick"David Norman2009-03-24T04:23:18Z2009-03-24T04:23:18Z<p>1 - XML schemas, which are a key part of the WSDL spec, are really, really big and complicated. In practice, you tools that do things like map XML schema to programming language constructs only end up supporting part of the XML schema features.</p>
<p>2 - The WS-* specs, e.g., WS-Security and WS-SecureConversation, are again big and complicated. They are almost designed so that no one will fewer resources than Microsoft or IBM would ever be able to implement them completely.</p>
http://stackoverflow.com/questions/670460/move-all-files-except-one/670482#6704823Answer by David Norman for Move all files except oneDavid Norman2009-03-22T02:55:17Z2009-03-22T02:55:17Z<pre><code>mv `find Linux/Old '!' -type d | fgrep -v Tux.png` Linux/New
</code></pre>
<p>The find command lists all regular files and the fgrep command filters out any Tux.png. The backticks tell mv to move the resulting file list.</p>
http://stackoverflow.com/questions/664602/good-tutorials-for-gtk-in-c-on-linux-for-experienced-c-developer/664619#6646192Answer by David Norman for Good tutorials for GTK+ in C on Linux for experienced C# developer David Norman2009-03-20T00:59:58Z2009-03-20T00:59:58Z<p><a href="http://www.joelonsoftware.com/navLinks/fog0000000262.html" rel="nofollow">Joel</a> likes <a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">K&R C</a>.</p>
<p>Many years ago I taught myself to program using good old K&R C. It's an amazing book.</p>
http://stackoverflow.com/questions/664533/best-command-line-option-parsers-for-c-c-and-c/664576#6645765Answer by David Norman for best command line option parsers for c, c++ and c#?David Norman2009-03-20T00:39:55Z2009-03-20T00:39:55Z<p>For C, there is the classic <a href="http://www.gnu.org/software/libtool/manual/libc/Getopt.html" rel="nofollow">getopt</a>.</p>
http://stackoverflow.com/questions/664320/can-i-pass-c-strings-into-a-method-in-the-style-of-a-stream/664361#6643611Answer by David Norman for Can I pass C++ strings into a method in the style of a stream?David Norman2009-03-19T22:50:11Z2009-03-19T22:50:11Z<p>I think you should look at <a href="http://stackoverflow.com/questions/303562/303675#303675">this</a> question for some hints as to what will be required to get the behavior you want.</p>
<p>This sort of thing seems to a bit difficult.</p>
http://stackoverflow.com/questions/664320/can-i-pass-c-strings-into-a-method-in-the-style-of-a-stream/664329#6643292Answer by David Norman for Can I pass C++ strings into a method in the style of a stream?David Norman2009-03-19T22:38:46Z2009-03-19T22:38:46Z<p>Your compile error looks like have included </p>
<pre><code><iosfwd>
</code></pre>
<p>in your class's header file, but you haven't included </p>
<pre><code><sstream>
</code></pre>
<p>in the cxx file.</p>
http://stackoverflow.com/questions/661881/the-string-3-18-09-1016-pm-is-not-a-valid-allxsd-value/661910#6619102Answer by David Norman for The string '3/18/09 10:16 PM' is not a valid AllXsd value.David Norman2009-03-19T11:48:58Z2009-03-19T12:48:10Z<p>According to the XML <a href="http://www.w3.org/TR/xmlschema-2/#dateTime" rel="nofollow">schema</a> spec, date time values should be in ISO8601 format, e.g., something like </p>
<pre><code>2009-03-13T22:16:00
</code></pre>
http://stackoverflow.com/questions/656941/converting-decimals-to-sexagesimal-base-sixty-in-javascript/657010#6570100Answer by David Norman for Converting decimals to sexagesimal (base sixty) in javascriptDavid Norman2009-03-18T04:50:36Z2009-03-18T04:50:36Z<p>Start by splitting the number into an integer and fractional part. </p>
<p>For the integer part, take the modulus to pull of the least-significant digit, then divide by 60 and repeat.</p>
<p>For the fractional part, repeatedly multiply by 60 and take the integer part to get the result digits. If you ever end up with zero, which is unlikely, you are finished. More likely you will want to terminate after you extract a certain number of digits.</p>
http://stackoverflow.com/questions/643995/algorithm-to-merge-adjacent-rectangles-into-polygon/645189#6451891Answer by David Norman for Algorithm to merge adjacent rectangles into polygonDavid Norman2009-03-14T02:10:53Z2009-03-14T02:10:53Z<p>Convex hull won't work. Consider the three rectangles:</p>
<pre><code>+---------------+
| |
| |
+-------+-------+
| |
| |
| |
+-------+-------+
| |
| |
+---------------+
</code></pre>
<p>The convex hull would be one big rectangle, not a U shape.</p>
http://stackoverflow.com/questions/1852357/multiplying-by-inverse-matrices/1852378#1852378Comment by David Norman on Multiplying by inverse matrices?David Norman2009-12-05T20:02:53Z2009-12-05T20:02:53ZIn math that's true, but in computer graphics usually the projection matrix is invertible.http://stackoverflow.com/questions/1852357/multiplying-by-inverse-matrices/1852412#1852412Comment by David Norman on Multiplying by inverse matrices?David Norman2009-12-05T16:27:41Z2009-12-05T16:27:41ZYou've given the mathematical definition of projection matrix, but the question is almost certainly about computer graphics where the projection matrix typically is invertible. Sometimes it's just the identity matrix.http://stackoverflow.com/questions/1580185/data-structure-for-quick-time-interval-look-upComment by David Norman on Data structure for quick time interval look up.David Norman2009-10-16T20:23:14Z2009-10-16T20:23:14ZNo memory constraintshttp://stackoverflow.com/questions/1511988/convert-a-pointer-to-a-reverse-vector-iterator-in-stl/1512009#1512009Comment by David Norman on convert a pointer to a reverse vector iterator in STLDavid Norman2009-10-02T22:18:40Z2009-10-02T22:18:40ZI think you need more than this. Pred needs to be a strict weak ordering, e.g., like < not <=. If you negate a strict weak ordering you don't get another strict weak ordering: negating < turns into >= not >.http://stackoverflow.com/questions/1297710/boost-thread-dead-lock-and-self-deletionComment by David Norman on boost.thread dead-lock and self-deletionDavid Norman2009-08-19T04:48:59Z2009-08-19T04:48:59ZIf you run the program in the debugger, what is happening in the various threads when it hangs?http://stackoverflow.com/questions/1294215/member-function-pointer-calls-copy-constructorComment by David Norman on Member function pointer calls copy constructor?David Norman2009-08-18T14:27:58Z2009-08-18T14:27:58ZCould you post the exact error message you're seeing?
http://stackoverflow.com/questions/1245968/least-squares-solution-to-simultaneous-equations/1246090#1246090Comment by David Norman on Least Squares solution to simultaneous equationsDavid Norman2009-08-07T19:24:27Z2009-08-07T19:24:27ZLeast squares can handle m > 1 independent variables and n > 1 dependent variables. In my edition of Numerical Recipes its covered in section 15.4 General Linear Least Squares or look at the wikipedia article referenced above.http://stackoverflow.com/questions/1209005/are-there-any-good-tutorials-that-describe-how-to-use-antlr-to-parse-boolean-sear/1209464#1209464Comment by David Norman on Are there any good tutorials that describe how to use ANTLR to parse boolean search stringsDavid Norman2009-08-01T02:22:05Z2009-08-01T02:22:05ZYes, but it would be more complicated. You'd have to look at adjacent tokens and decide where to put the ANDs, e.g, between two non-keywords, between a keyword and an opening paren, etc. The whole point of the text processing is that the syntax of the input is very similar to the syntax of the output.http://stackoverflow.com/questions/1209005/are-there-any-good-tutorials-that-describe-how-to-use-antlr-to-parse-boolean-searComment by David Norman on Are there any good tutorials that describe how to use ANTLR to parse boolean search stringsDavid Norman2009-07-30T20:15:04Z2009-07-30T20:15:04ZCould you post an example or two of the input expression and the output SQL?http://stackoverflow.com/questions/1151358/operator-overloading-for-objects-in-multiple-classes/1151410#1151410Comment by David Norman on Operator Overloading for Objects in Multiple ClassesDavid Norman2009-07-20T03:38:39Z2009-07-20T03:38:39ZThis means that you don't need the friend declarations at all. The comparison is comparing two Books, one of which happens to be in a library.http://stackoverflow.com/questions/673216/skew-matrix-algorithm/673242#673242Comment by David Norman on skew matrix algorithmDavid Norman2009-03-23T12:56:40Z2009-03-23T12:56:40ZThese matricies are what mathematicians call skew, but based on <a href="http://www.offshorewebsolution.com/resources/creating_skew_effects_in_adobe_photoshop.html" rel="nofollow">offshorewebsolution.com/resources/…</a>, I'm don't think it's what Photoshop calls skew.http://stackoverflow.com/questions/664320/can-i-pass-c-strings-into-a-method-in-the-style-of-a-stream/664326#664326Comment by David Norman on Can I pass C++ strings into a method in the style of a stream?David Norman2009-03-19T22:40:21Z2009-03-19T22:40:21ZThat's not going to work directly in his case, since he wants to construct a temporary stringstream, which you can't pass by non-const reference.http://stackoverflow.com/questions/661881/the-string-3-18-09-1016-pm-is-not-a-valid-allxsd-value/661910#661910Comment by David Norman on The string '3/18/09 10:16 PM' is not a valid AllXsd value.David Norman2009-03-19T12:47:58Z2009-03-19T12:47:58ZUpdated. Thanks.http://stackoverflow.com/questions/636083/why-doesnt-perl-print-the-last-text-before-it-exits/636111#636111Comment by David Norman on Why doesn't Perl print the last text before it exits?David Norman2009-03-12T14:13:11Z2009-03-12T14:13:11ZPerhaps he has an old version of perl?http://stackoverflow.com/questions/636083/why-doesnt-perl-print-the-last-text-before-it-exitsComment by David Norman on Why doesn't Perl print the last text before it exits?David Norman2009-03-12T14:06:57Z2009-03-12T14:06:57ZWhat version of perl are you using?