User nlucaroni - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:58:41Z http://stackoverflow.com/feeds/user/157 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1784966/f-traversing-lists-there-and-back-again/1785034#1785034 7 Answer by nlucaroni for F# :: traversing lists There and Back Again nlucaroni 2009-11-23T18:23:44Z 2009-11-23T19:03:37Z <p>You just need to pass the average up the stack with the return value:</p> <pre><code>let foo ls = let rec foo xs sumAcc lenAcc = match xs with | x::xs -&gt; let avg,s = foo xs (x + sumAcc) (1 + lenAcc) in if x &lt; avg then (avg,s) else (avg,s+1) | [] -&gt; (sumAcc / lenAcc),0 in let avg,res = foo ls 0 0 in res </code></pre> http://stackoverflow.com/questions/1758669/large-exponents-in-ruby/1758715#1758715 4 Answer by nlucaroni for Large Exponents in Ruby? nlucaroni 2009-11-18T20:09:55Z 2009-11-18T20:09:55Z <p>You need to do what is called, <a href="http://en.wikipedia.org/wiki/Modular%5Fexponentiation" rel="nofollow">modular exponentiation</a>.</p> http://stackoverflow.com/questions/1645775/ocaml-syntax-error/1645876#1645876 3 Answer by nlucaroni for Ocaml Syntax Error nlucaroni 2009-10-29T19:04:06Z 2009-10-29T20:32:58Z <p>you are going to kick yourself... where is seq1 defined?</p> <pre><code>let rec (cross : 'a Sequence.t -&gt; 'b Sequence.t -&gt; ('a * 'b) Sequence.t) = </code></pre> <p>You define the type of cross, but you don't bind the variables to anything (I guess, you can say that).</p> <pre><code>let rec cross (seq1:'a Sequence.t) (seq2:'a Sequence.t) :('a * 'b) Sequence.t = </code></pre> <p><em>EDIT:</em></p> <p>I think your matching is well, mis-matched. Use <code>begin ... end</code> blocks around the cases, I think what is happening (and since I don't have Sequence, I cannot verify) is that the match cases you intend for the outer match are being applied to the inner one, matching seq2. for example,</p> <pre><code>match x with | 0 -&gt; match y with | 1 -&gt; "x:0, y:1" | 2 -&gt; match y with | 0 -&gt; "y:0, x:2" </code></pre> <p>Although, spatially, it looks fine, the second match, <code>match y with</code> is bound with the <code>| 2 -&gt; ...</code> match case. Here is a version with the <code>being ... end</code> keywords surrounding the match cases. The second begin ... end isn't needed, but it's probably a good idea to do it anyway for clarity.</p> <pre><code>match x with | 0 -&gt; begin match y with | 1 -&gt; "x:0, y:1" end | 2 -&gt; begin match y with | 0 -&gt; "y:0, x:2" end </code></pre> http://stackoverflow.com/questions/1613793/ocaml-int-and-negative-values/1613810#1613810 2 Answer by nlucaroni for Ocaml Int and negative values nlucaroni 2009-10-23T14:21:57Z 2009-10-23T14:21:57Z <p>when you type, </p> <pre><code>range -4 2;; </code></pre> <p>you need to remember that the <code>-</code> is a function, an infix function, not a unary negation.</p> <p>To do unary negation you can do one of two things, 1) preceede - sign with a ~, like ~-4, or use parenthesis.</p> http://stackoverflow.com/questions/1609132/converting-binary-to-decimal-and-decimal-to-binary-in-ocaml/1609210#1609210 1 Answer by nlucaroni for converting binary to decimal and decimal to binary in ocaml nlucaroni 2009-10-22T18:43:37Z 2009-10-22T18:43:37Z <p>I'll leave the reverse to you...</p> <pre><code>type bits = [ `One | `Zero ] let rec foldi i f acc = function | x::xs -&gt; foldi (i+1) f (f i x acc) xs | [] -&gt; acc let rec pow a b = match b with | 0 -&gt; 1 | 1 -&gt; a | b -&gt; a * (pow a (b-1)) let decimal_of_bits b = foldi 0 (fun i x a -&gt; match x with | `One -&gt; a + pow 2 i | `Zero -&gt; a) 0 b </code></pre> http://stackoverflow.com/questions/1572770/did-ocaml-get-any-serious-promotion-last-few-years/1572852#1572852 3 Answer by nlucaroni for Did OCaml get any Serious Promotion last few Years? nlucaroni 2009-10-15T14:44:17Z 2009-10-15T14:44:17Z <p><a href="http://www.janestcapital.com/" rel="nofollow">Jane Street Capital</a> has <a href="http://ocaml.janestreet.com/?q=blog/78#" rel="nofollow">OCaml Summer of Code</a> every year. Other then that, I really don't recall. You should check the <a href="http://groups.google.com/group/fa.caml/topics" rel="nofollow">archives of the OCaml mailing list</a>, there would definitly be announcements there of anything like you've mentioned.</p> http://stackoverflow.com/questions/1506078/fast-permutation-number-permutation-mapping-algorithms/1506485#1506485 0 Answer by nlucaroni for Fast permutation -> number -> permutation mapping algorithms nlucaroni 2009-10-01T21:03:41Z 2009-10-01T21:03:41Z <p>I was hasty in my previous answer (deleted), I do have the actual answer though. It is provided by a similar concept, the <a href="http://en.wikipedia.org/wiki/Factoradic" rel="nofollow">factoradic</a>, and is related to permutations (my answer related to combinations, I apologize for that confusion). I hate to just post wikipedia links, but I writeup I did awhile ago is unintelligible for some reason. So, I can expand on this later if requested.</p> http://stackoverflow.com/questions/1446177/parser-lexer-ignoring-incomplete-grammar-rules 3 Parser/Lexer ignoring incomplete grammar rules nlucaroni 2009-09-18T18:27:17Z 2009-09-18T19:53:07Z <p>I have a parser and lexer written in ocamlyacc and ocamllex. If the file to parse ends prematurely, as in I forget a semicolon at the end of a line, the application doesn't raise a syntax error. I realize it's because I'm raising and catching EOF and that is making the lexer ignore the unfinished rule, but how <em>should</em> I be doing this to raise a syntax error?</p> <p>Here is my current parser (simplified), </p> <pre><code>%{ let parse_error s = Printf.ksprinf failwith "ERROR: %s" s %} %token COLON %token SEPARATOR %token SEMICOLON %token &lt;string&gt; FLOAT %token &lt;string&gt; INT %token &lt;string&gt; LABEL %type &lt;Conf.config&gt; command %start command %% command: | label SEPARATOR data SEMICOLON { Conf.Pair ($1,$3) } | label SEPARATOR data_list { Conf.List ($1,$3) } | label SEMICOLON { Conf.Single ($1) } label : | LABEL { Conf.Label $1 } data : | label { $1 } | INT { Conf.Integer $1 } | FLOAT { Conf.Float $1 } data_list : | star_data COMMA star_data data_list_ending { $1 :: $3 :: $4 } data_list_ending: | COMMA star_data data_list_ending { $2 :: $3 } | SEMICOLON { [] } </code></pre> <p>and lexxer (simplified),</p> <pre><code>{ open ConfParser exception Eof } rule token = parse | ['\t' ' ' '\n' '\010' '\013' '\012'] { token lexbuf } | ['0'-'9']+ ['.'] ['0'-'9']* ('e' ['-' '+']? ['0'-'9']+)? as n { FLOAT n } | ['0'-'9']+ as n { INT n } | '#' { comment lexbuf } | ';' { SEMICOLON } | ['=' ':'] { SEPARATOR } | ',' { COMMA } | ['_' 'a'-'z' 'A'-'Z']([' ']?['a'-'z' 'A'-'Z' '0'-'9' '_' '-' '.'])* as w { LABEL w } | eof { raise Eof } and comment = parse | ['#' '\n'] { token lexbuf } | _ { comment lexbuf } </code></pre> <p>example input file,</p> <pre><code>one = two, three, one-hundred; single label; list : command, missing, a, semicolon </code></pre> <p>One solution, is to add a recursive call in the command rule to itself at the end, and adding an empty rule, all of which build a list to return to the main program. I think I maybe interpreting Eof as a expectation, and ending condition, rather then an error in the lexer, is this correct?</p> http://stackoverflow.com/questions/1412668/does-have-meaning-in-ocaml/1412688#1412688 8 Answer by nlucaroni for Does != have meaning in OCaml? nlucaroni 2009-09-11T18:54:19Z 2009-09-16T14:49:20Z <p>you have experienced the difference between structural and physical equality.</p> <p><code>&lt;&gt;</code> is to <code>=</code> (structural equality) as <code>!=</code> is to <code>==</code> (physical equality)</p> <pre><code>"odg" = "odg" (* true *) "odg" == "odg" (* false *) </code></pre> <p>is false because each is instantiated in different memory locations, doing:</p> <pre><code>let v = "odg" v == v (* true *) v = v (* true *) </code></pre> <p>Most of the time you'll want to use <code>=</code> and <code>&lt;&gt;</code>. </p> <p><em>edit about when structural and physical equality are equivalent</em>:</p> <p>You can you the <a href="http://rwmj.wordpress.com/2009/08/04/ocaml-internals/" rel="nofollow">what_is_it function</a> and find out all the types that would be equal both structurally and physically. As mentioned in the comments below, and in the linked article, characters, integers, unit, empty list, and some instances of variant types will have this property.</p> http://stackoverflow.com/questions/1403641/what-ocaml-libraries-are-there-for-lazy-list-handling/1406118#1406118 3 Answer by nlucaroni for What OCaml libraries are there for lazy list handling? nlucaroni 2009-09-10T15:51:24Z 2009-09-10T17:54:32Z <p><a href="http://batteries.forge.ocamlcore.org/" rel="nofollow">Ocaml Batteries</a> has a <a href="http://batteries.forge.ocamlcore.org/doc.preview%3Abatteries-beta1/html/api/Lazy%5Flist.html" rel="nofollow">lazy list module</a>, check out the <code>to_stream</code> function. As for backtracking, you can look into camlp4's stream parsers now that you have a Stream.t .</p> http://stackoverflow.com/questions/1381073/nested-union-types-in-f/1381152#1381152 2 Answer by nlucaroni for Nested union types in F# nlucaroni 2009-09-04T19:34:42Z 2009-09-08T14:34:11Z <p>No, you'll have to separate the types(as in kvb's post). <strike>I have heard of plans to add polymorphic variance (as in ocaml) to F#</strike>, which would allow you to do something similar.</p> <p>In ocaml,</p> <pre><code>type mainType = | A of [ `AA of int | `AB of float ] | B of int </code></pre> http://stackoverflow.com/questions/1380610/checking-string-has-balanced-parentheses/1380643#1380643 4 Answer by nlucaroni for Checking string has balanced parentheses nlucaroni 2009-09-04T17:45:07Z 2009-09-04T18:08:59Z <p>I think this is the intention, but really you just need to decrement and increment a counter if you are only dealing with parenthesis. If you are dealing with the pairings of square brackets, angle brackets, curly braces or whatever character pairing you'd like to use, you'll need a stack like you have done.</p> <p>You can also use a list, pulling the head element off and on, but really a stack is probably implemented as a list anyway --at least it is in ocaml.</p> http://stackoverflow.com/questions/1362984/what-do-you-think-of-this-interest-point-detection-algorithm/1363043#1363043 1 Answer by nlucaroni for What do you think of this interest point detection algorithm? nlucaroni 2009-09-01T15:17:21Z 2009-09-01T16:13:52Z <p>Why not try it and see if it works the way you expect? It sounds like it should. How does the performance compare with other methods? What is the complexity of the algorithm? Is it efficient compared to others? Where can it be improved? What kind of false-positives and false negatives are expected? Are they within reason based on the data I plan to use this on? What threshold should be used to compare surrounding squares? ....</p> <p>this is stuff you should be doing, not us.</p> http://stackoverflow.com/questions/1347961/compiling-ocaml-in-notepad/1348356#1348356 1 Answer by nlucaroni for Compiling ocaml in notepad++ nlucaroni 2009-08-28T17:23:55Z 2009-08-28T17:23:55Z <blockquote> <p>chollida</p> <blockquote> <p>But then you have to fiddle with the name and dependencies and by that point you really are better off with a true ide or having a command line open to call out to the compiler.</p> </blockquote> </blockquote> <p>I don't have experience with notepad++, but it sounds like <a href="http://brion.inria.fr/gallium/index.php/Ocamlbuild" rel="nofollow">ocamlbuild</a> will help in the compilation process.</p> http://stackoverflow.com/questions/1302272/is-inria-going-to-add-concurrency-primitives-to-ocaml/1302297#1302297 3 Answer by nlucaroni for Is INRIA going to add concurrency primitives to OCaml? nlucaroni 2009-08-19T19:57:31Z 2009-08-19T20:07:39Z <p><a href="http://caml.inria.fr/pub/ml-archives/caml-list/2002/11/64c14acb90cb14bedb2cacb73338fb15.en.html" rel="nofollow">no</a></p> <p>I cannot be more concise without reproducing his explanation. It speaks for itself. Yes, this is from 2002, but I haven't heard him sway on the issue, and from the text, it doesn't seem probable at all that he would back down from these goals.</p> <p>For current developments on concurrent functional programming, possibly MPI solutions (<a href="http://pauillac.inria.fr/~xleroy/software.html#ocamlmpi" rel="nofollow">with ocaml bindings</a>) might be a solution to your problem. Obviously this is not shared memory parallelism. There is also <a href="http://cml.cs.uchicago.edu/" rel="nofollow">concurrent ML</a>.</p> http://stackoverflow.com/questions/1290739/which-ml-implementation-for-working-throughthe-book-purely-functional-datastruc/1290802#1290802 1 Answer by nlucaroni for Which ML implementation for working throughthe book " purely functional datastructures"? nlucaroni 2009-08-17T22:20:43Z 2009-08-18T00:57:36Z <p>The $ notation is his own notation and I don't think there is an implementation that matches that exactly. You can create a variant type around the susp module in Moscow ML though, if that helps. I program in ocaml, so I lied, I'm not sure if you can, but being an ML flavor, I imagine the possibility almost certainly. So, something like this, in ocaml:</p> <pre><code>type 'a mylazy = | Lazy of 'a Lazy.t | Eager of 'a </code></pre> <p>This additional construct shouldn't affect the memoization that <code>Lazy</code> gives you in casual use. But, if you are using lazy values you don't usually worry about the <code>Eager</code> case and only have a lazy case utilizing the memoization that the modules provide, forcing the value each time without subsequent penalties.</p> <p>(also, I used OCAML to work through Purely Functional Data Structures)</p> http://stackoverflow.com/questions/1287318/how-to-use-multicores-in-ocaml-to-do-monte-carlo-simulations/1288074#1288074 2 Answer by nlucaroni for How to use multicores in Ocaml to do Monte Carlo simulations? nlucaroni 2009-08-17T13:52:07Z 2009-08-17T13:52:07Z <p>Currently, the only way to do it is with MPI, and you can find ocaml bindings for it on <a href="http://pauillac.inria.fr/~xleroy/software.html#ocamlmpi" rel="nofollow">Xavier Leroy's website</a>.</p> http://stackoverflow.com/questions/1280480/iphone-sdk-log-to-base-10/1280487#1280487 0 Answer by nlucaroni for iPhone SDK log to base 10 nlucaroni 2009-08-14T22:23:37Z 2009-08-14T22:23:37Z <pre><code>log_n x / log_n 10 </code></pre> <p>where log_n is log to any base</p> http://stackoverflow.com/questions/1273856/smooth-average-of-sales-data/1273927#1273927 0 Answer by nlucaroni for Smooth average of sales data nlucaroni 2009-08-13T18:58:43Z 2009-08-13T18:58:43Z <p>You'll want to use something like IQR (<a href="http://mathworld.wolfram.com/InterquartileRange.html" rel="nofollow">interquartile range</a>). Basically you break the data into quartiles and then calculate the median from the first and third quartiles. Then you can get your central tendency of the data.</p> http://stackoverflow.com/questions/1253546/good-books-on-string-algorithms-if-any-do-i-need-a-separate-book-or-theme-is-wel/1254860#1254860 3 Answer by nlucaroni for Good books on string algorithms if any. Do I need a separate book or theme is well explained in general algoritms? nlucaroni 2009-08-10T13:25:33Z 2009-08-10T13:25:33Z <p>Great book is the <a href="http://books.google.com/books?id=STGlsyqtjYMC&amp;lpg=PP1&amp;client=firefox-a&amp;pg=PP1#v=onepage&amp;q=&amp;f=false" rel="nofollow">Algorithms on Strings, Trees and sequences</a>.</p> http://stackoverflow.com/questions/1207856/generating-unique-combinations-without-running-out-of-memory-in-php/1208100#1208100 0 Answer by nlucaroni for generating unique combinations without running out of memory in php nlucaroni 2009-07-30T17:29:31Z 2009-07-30T17:29:31Z <p>Yes. You can store and use the lexicographical index of the combination to reconstruct/iterate them, or Grey Codes if you need to iterate all of them.</p> <p>Take a look at: <em>"Algorithm 515: Generation of a Vector from the Lexicographical Index"; Buckles, B. P., and Lybanon, M. ACM Transactions on Mathematical Software, Vol. 3, No. 2, June 1977.</em></p> <p>I've translated into C <a href="http://stackoverflow.com/questions/561/using-combinations-of-sets-as-test-data">here</a>, and describe more <a href="http://stackoverflow.com/questions/127704/algorithm-to-return-all-combinations-of-k-elements-from-n/127856#127856">here</a>.</p> http://stackoverflow.com/questions/1203248/circular-representation-of-a-tree-structure/1203299#1203299 2 Answer by nlucaroni for Circular representation of a tree structure nlucaroni 2009-07-29T21:56:29Z 2009-07-29T22:06:31Z <p>If you don't care about <em>how</em> it's done, but just that you are visualizing the data, then take a look at <a href="http://www.graphviz.org/" rel="nofollow">graphviz</a>'s <a href="http://www.graphviz.org/Gallery/twopi/twopi2.html" rel="nofollow">radial layout</a>. Although the example doesn't look exactly what you want, it is the layout you'd need. It'll also give you some ideas on how it's done too with the loads of research papers in there. Good luck!</p> <p>You could also see how easy it is to extend <a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.83.4331" rel="nofollow">this paper</a> into a circular structure.</p> http://stackoverflow.com/questions/1184511/is-there-a-strongly-typed-programming-language-which-allows-you-to-define-new-ope/1188155#1188155 1 Answer by nlucaroni for Is there a strongly typed programming language which allows you to define new operators? nlucaroni 2009-07-27T13:27:51Z 2009-07-29T18:02:16Z <p>Both ocaml and <a href="http://stackoverflow.com/questions/59711/haskell-list-difference-operator-in-f/59814#59814">f#</a> have infix operators. They have a special set of characters that are allowed within their syntax, but both can be used to manipulate other symbols to use any function infix (see the <a href="http://groups.google.com/group/fa.caml/browse%5Fthread/thread/c79f7b8fbb7d31b7/6baac9a447e6c5cb?pli=1" rel="nofollow">ocaml discussion</a>).</p> http://stackoverflow.com/questions/1201560/is-it-possible-to-implement-a-recursive-algorithm-with-an-iterator/1201629#1201629 1 Answer by nlucaroni for Is it possible to implement a recursive Algorithm with an Iterator? nlucaroni 2009-07-29T16:53:48Z 2009-07-29T17:10:14Z <p>You can convert <em>that</em> recursive function to an iterative function with the help of a stack.</p> <pre><code>//breadth first traversal pseudo-code push root to a stack while( stack isn't empty ) pop element off stack push children perform action on current node </code></pre> <p>depending on how you want to traverse the nodes the implementation will be different. All recursive functions can be transformed to iterative ones. A general usage on how requires information on the specific problem. Using stacks/queues and transforming into a for loop are common methods that should solve most situations.</p> <p>You should also look into tail recursion and how to identify them, as these problems nicely translates into a for loop, many compilers even do this for you.</p> <p>Some, more mathematically oriented recursive calls can be solved by <a href="http://mathworld.wolfram.com/RecurrenceRelation.html" rel="nofollow">recurrence relations</a>. The likelihood that you come across these which haven't been solved yet is unlikely, but it might interest you.</p> <p>//edit, performance? Really depends on your implementation and the size of the tree. If there is a lot of depth in your recursive call, then you will get a stack overflow, while an iterative version will perform fine. I would get a better grasp on recursion (how memory is used), and you should be able to decide which is better for your situation. <a href="http://www.ics.uci.edu/~eppstein/161/960109.html" rel="nofollow">Here is an example of this type of analysis with the fibonacci numbers</a>.</p> http://stackoverflow.com/questions/118935/know-of-an-ocaml-ide/121134#121134 2 Answer by nlucaroni for Know of an OCAML IDE? nlucaroni 2008-09-23T13:53:32Z 2009-07-29T14:18:14Z <p>There are also a few <code>vim</code> files you can <a href="http://www.ocaml.info/vim/" rel="nofollow">load</a> <a href="http://www.vim.org/scripts/script.php?script%5Fid=1197" rel="nofollow">up</a>... Take a look at the list of tools on the <a href="http://caml.inria.fr/cgi-bin/hump.en.cgi?sort=-1&amp;browse=12" rel="nofollow"><code>hump</code></a> and <a href="http://www.camlcity.org/" rel="nofollow"><code>godi</code></a>, for extra tools. And be sure to compile with <code>-dtypes</code> on so you can take advantage of the annotation files to determine the types with a keystroke.</p> <p>You can also use netbeans as an ide with an <a href="http://caml.inria.fr/cgi-bin/hump.cgi?contrib=705" rel="nofollow">ocaml plugin</a>.</p> http://stackoverflow.com/questions/1190689/problem-with-rand-in-c/1190711#1190711 1 Answer by nlucaroni for Problem with rand() in C nlucaroni 2009-07-27T21:23:56Z 2009-07-27T21:23:56Z <p>as before, a seed. Often times something like, time() or pid()</p> http://stackoverflow.com/questions/1169181/editor-for-programming-ml-on-windows/1172183#1172183 0 Answer by nlucaroni for Editor for programming ML on windows? nlucaroni 2009-07-23T14:33:13Z 2009-07-23T14:33:13Z <p>Of course... VIM --what i use with ocaml.</p> <p>Aside from that, there is an eclipse plug-in for SML/NJ called <a href="http://www.cs.unc.edu/~narain/projects/mldev/" rel="nofollow">ML-Dev</a> and <a href="http://ocamldt.free.fr/" rel="nofollow">ODT</a> for ocaml.</p> http://stackoverflow.com/questions/1163116/algorithm-to-determine-minimum-payments-amongst-a-group/1165319#1165319 4 Answer by nlucaroni for algorithm to determine minimum payments amongst a group nlucaroni 2009-07-22T13:39:06Z 2009-07-22T13:39:06Z <p>Take a look at this blog article, "<a href="http://stochastix.wordpress.com/2009/06/20/optimal-account-balancing/" rel="nofollow">Optimal Account Balancing</a>", goes over your problem exactly.</p> http://stackoverflow.com/questions/1133193/efficiently-determining-the-probability-of-a-user-clicking-a-hyperlink/1133372#1133372 0 Answer by nlucaroni for Efficiently determining the probability of a user clicking a hyperlink nlucaroni 2009-07-15T19:15:20Z 2009-07-15T19:58:45Z <p>Bayes' Theorem Proof:</p> <pre><code>P(A,B) = P( A | B ) * P( B ) (1) </code></pre> <p>since,</p> <pre><code>P(A,B) = P(B,A) (2) </code></pre> <p>And substituting (2) with (1),</p> <pre><code>P(A | B) * P( B ) = P (B | A) * P(A) </code></pre> <p>thus (Bayes' Theorem), </p> <pre><code> P( B | A ) * P(A) P(A | B) = ----------------- P(B) P(A) -- prior/marginal probability of A, may or may not take into account B P(A|B) -- conditional/posterior probability of A, given B. P(B|A) -- conditional probability of B given A. P(B) -- prior/marginal probability of B </code></pre> <p>Consequences,</p> <pre><code>P( A | B ) = P( A ), then a and b are independent P( B | A ) = P( B ), and then </code></pre> <p>and the definition of independence is, </p> <pre><code>P(A,B) = P(A | B) * P( B ) = P( A )* P( B ) </code></pre> <p>It should be noted, that it is easy to manipulate the probability to your liking by changing the priors and the way the problem is thought of, take a look at this discussion of the <a href="http://www.scottaaronson.com/democritus/lec17.html" rel="nofollow">Anthropic Principle and Bayes' Theorem</a>.</p> http://stackoverflow.com/questions/1111386/is-there-an-online-archive-for-various-math-formulas/1128940#1128940 3 Answer by nlucaroni for Is there an online archive for various math formulas? nlucaroni 2009-07-15T01:29:40Z 2009-07-15T01:29:40Z <p>adding to the list, also, <a href="http://keisan.casio.com/" rel="nofollow">Casio</a> has a site, interestingly enough.</p> http://stackoverflow.com/questions/1784966/f-traversing-lists-there-and-back-again/1785034#1785034 Comment by nlucaroni on F# :: traversing lists There and Back Again nlucaroni 2009-11-23T22:47:55Z 2009-11-23T22:47:55Z #light? <i>shiver</i>, no thanks. Call me formal but that <code>in</code> means something in the readability of the code. http://stackoverflow.com/questions/1759839/partial-differential-equations Comment by nlucaroni on Partial Differential Equations nlucaroni 2009-11-18T23:29:03Z 2009-11-18T23:29:03Z It depends on the PDE... there is a course, <a href="http://www.math.nyu.edu/faculty/kohn/pde_finance.html" rel="nofollow">math.nyu.edu/faculty/kohn/&hellip;</a> http://stackoverflow.com/questions/1758064/how-to-solve-this-mathematical-problem Comment by nlucaroni on How to solve this mathematical problem? nlucaroni 2009-11-18T18:33:21Z 2009-11-18T18:33:21Z You have two equations, x_1 = p_1 + v_1 * t and x_2 = p_2 + v_2 * t they meet when they are equal, p_2 + v_2 * t = p_1 + v_1 * t Solve for t... http://stackoverflow.com/questions/1675511/how-to-work-around-the-decimal-problem-in-javascript Comment by nlucaroni on How to work around the decimal problem in JavaScript? nlucaroni 2009-11-04T17:55:53Z 2009-11-04T17:55:53Z <a href="http://docs.sun.com/source/806-3568/ncg_goldberg.html" rel="nofollow">docs.sun.com/source/806-3568/&hellip;</a> http://stackoverflow.com/questions/1667232/optional-argument-cannot-be-erased Comment by nlucaroni on Optional argument cannot be erased? nlucaroni 2009-11-03T14:32:14Z 2009-11-03T14:32:14Z you should take a look at the recent posts on the ocaml mailing list about tail-recursive maps. <a href="http://groups.google.com/group/fa.caml/browse_thread/thread/8b2a70a767e6a433" rel="nofollow">groups.google.com/group/fa.caml/&hellip;</a> http://stackoverflow.com/questions/1645775/ocaml-syntax-error Comment by nlucaroni on Ocaml Syntax Error nlucaroni 2009-10-29T18:53:32Z 2009-10-29T18:53:32Z What is the type error you are getting? Shouldn't you be matching with Sequence.Nil and Sequence.Cons? http://stackoverflow.com/questions/1638531/how-to-use-correlogram-to-estimate-variance Comment by nlucaroni on How to use correlogram to estimate variance? nlucaroni 2009-10-28T20:31:58Z 2009-10-28T20:31:58Z hard to tell without the actual functions you programmed. http://stackoverflow.com/questions/1137255/should-i-include-f-as-a-part-of-our-programming-curriculum/1160017#1160017 Comment by nlucaroni on Should I include F# as a part of our programming curriculum? nlucaroni 2009-10-27T14:34:07Z 2009-10-27T14:34:07Z no polymorphic variants, as well. But could you expand why Set.make can handle situations where functors could be implemented? (I am assuming Set isn't implemented as a functor in F#). http://stackoverflow.com/questions/1619656/coverting-an-integer-to-bits-in-ocaml/1619669#1619669 Comment by nlucaroni on Coverting an integer to bits in ocaml nlucaroni 2009-10-26T13:32:34Z 2009-10-26T13:32:34Z You also need a better question. Please refrain from 'do my work, please' questions. At the very least enter a code sample of an attempt. http://stackoverflow.com/questions/1615892/is-there-an-efficient-index-persistent-data-structure-with-multiple-indexes Comment by nlucaroni on Is there an efficient index persistent data structure with multiple indexes nlucaroni 2009-10-23T21:12:58Z 2009-10-23T21:12:58Z In F#; it may be a single index on the left, but I believe if you insert them individually with the same data on the right, each should point to the same reference of that data. http://stackoverflow.com/questions/1613793/ocaml-int-and-negative-values/1613810#1613810 Comment by nlucaroni on Ocaml Int and negative values nlucaroni 2009-10-23T15:38:13Z 2009-10-23T15:38:13Z well, there isn't anything special about <code>~</code> the whole function is defined, <code>let (~-) a = 0 - a</code>, there is a corresponding unary negation function for floats as well, I'm sure you can guess it. http://stackoverflow.com/questions/1609132/converting-binary-to-decimal-and-decimal-to-binary-in-ocaml/1609210#1609210 Comment by nlucaroni on converting binary to decimal and decimal to binary in ocaml nlucaroni 2009-10-23T13:59:29Z 2009-10-23T13:59:29Z what don't you understand? The reverse I&quot;m mentioning is base10-&gt;base2. http://stackoverflow.com/questions/1604270/ocaml-what-is-the-different-between-fun-and-function-keywords/1604288#1604288 Comment by nlucaroni on OCaml: What is the different between `fun` and `function` keywords? nlucaroni 2009-10-22T15:00:13Z 2009-10-22T15:00:13Z I didn't downvote, but, describing 'fun' as preferred because it's more compact isn't the whole story, it isn't even a description of how to use it, and in no way are you comparing the two keywords! function is the same as saying, (fun x -&gt; match x with ...), how is that more compact if you plan to pattern match? http://stackoverflow.com/questions/1597519/algorithm-for-finding-good-reliable-players/1597536#1597536 Comment by nlucaroni on Algorithm for Finding Good, Reliable Players nlucaroni 2009-10-21T03:46:21Z 2009-10-21T03:46:21Z I fixed the error, but remember likelihood != probabilty when talking about statistics. http://stackoverflow.com/questions/891963/what-kind-of-logarithm-functions-methods-are-available-in-objective-c-cocoa-t Comment by nlucaroni on What kind of logarithm functions / methods are available in objective-c / cocoa-touch? nlucaroni 2009-10-20T19:23:17Z 2009-10-20T19:23:17Z aside, any version of log you use you'll get comparable results, since they are monotonic functions.