nlucaroni

4,406
Reputation
430 views

Registered User

Name nlucaroni
Member for 1 year
Seen 17 hours ago
Website
Location North Jersey
Age 26
Work: OCAML, C, Scientific Computing,
Interests: OCAML, Horse racing, Bacon,
2d
comment F# :: traversing lists There and Back Again
#light? shiver, no thanks. Call me formal but that in means something in the readability of the code.
2d
accepted F# :: traversing lists There and Back Again
2d
revised F# :: traversing lists There and Back Again
backwards variables in tuple
2d
revised F# :: traversing lists There and Back Again
backwards cases, first matches second
2d
revised F# :: traversing lists There and Back Again
prevent division by 0 on empty list
2d
answered F# :: traversing lists There and Back Again
Nov
18
comment Partial Differential Equations
It depends on the PDE... there is a course, math.nyu.edu/faculty/kohn/…
Nov
18
accepted Large Exponents in Ruby?
Nov
18
answered Large Exponents in Ruby?
Nov
18
comment How to solve this mathematical problem?
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...
Nov
7
accepted Ocaml Syntax Error
Nov
4
comment How to work around the decimal problem in JavaScript?
docs.sun.com/source/806-3568/…
Nov
3
comment Optional argument cannot be erased?
you should take a look at the recent posts on the ocaml mailing list about tail-recursive maps. groups.google.com/group/fa.caml/…
Oct
29
revised Ocaml Syntax Error
added 299 characters in body
Oct
29
revised Ocaml Syntax Error
added 403 characters in body; added 166 characters in body
Oct
29
answered Ocaml Syntax Error
Oct
29
comment Ocaml Syntax Error
What is the type error you are getting? Shouldn't you be matching with Sequence.Nil and Sequence.Cons?
Oct
28
comment How to use correlogram to estimate variance?
hard to tell without the actual functions you programmed.
Oct
27
comment Should I include F# as a part of our programming curriculum?
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#).
Oct
26
comment Coverting an integer to bits in ocaml
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.
Oct
23
comment Is there an efficient index persistent data structure with multiple indexes
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.
Oct
23
comment Ocaml Int and negative values
well, there isn't anything special about ~ the whole function is defined, let (~-) a = 0 - a, there is a corresponding unary negation function for floats as well, I'm sure you can guess it.
Oct
23
accepted Ocaml Int and negative values
Oct
23
answered Ocaml Int and negative values
Oct
23
comment converting binary to decimal and decimal to binary in ocaml
what don't you understand? The reverse I"m mentioning is base10->base2.
Oct
22
answered converting binary to decimal and decimal to binary in ocaml
Oct
22
comment OCaml: What is the different between `fun` and `function` keywords?
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 -> match x with ...), how is that more compact if you plan to pattern match?
Oct
21
comment Algorithm for Finding Good, Reliable Players
I fixed the error, but remember likelihood != probabilty when talking about statistics.
Oct
21
revised Algorithm for Finding Good, Reliable Players
Likelihood != probability...
Oct
20
comment What kind of logarithm functions / methods are available in objective-c / cocoa-touch?
aside, any version of log you use you'll get comparable results, since they are monotonic functions.
Oct
20
comment Why do simple math operations on floating point return unexpected (inacurate) results in VB.Net and Python?
read this three or four times: docs.sun.com/source/806-3568/…
Oct
19
comment Initialize Array to Blank custom type OCAML
What is wrong with your example? It seems perfectly reasonable to me. I guess some intention or perspective on why this is bad would be helpful. But this is usually how it's done, that or using 'a option types. emphasis.
Oct
19
comment Parsing grammars using OCaml
So, ocamllexx and ocamlyacc are out of the question?
Oct
15
answered Did OCaml get any Serious Promotion last few Years?
Oct
14
comment Functional languages: Real-life Examples
Here are the videos from CUFP: vimeo.com/album/128851
Oct
13
comment Good computer science lecture series
I think changing the question to "What online courses did you find particularly helpful in category [x]," would produce answers you are looking for. Of course, we still have a free variable.
Oct
9
comment Math Expression Evaluation
docs.python.org/reference/simple_stmts.html#exec/…
Oct
9
comment C# - Convert String to Math Equation and Get Result
Any function you call/write is going to have to parse the string out each time. You'd want something like eval, which I don't think C# has.
Oct
9
comment My first F# program…
agreed, break up the program into functional bits, and use matches. you can use guarded matches instead of matching the exact value of the number of arguments (what I would have done), but there is nothing wrong with pattern matching both.
Oct
8
comment Do you know any programmer/math/calculus pickup lines?
i wish i was your derivative so I could lie tangent to your curves
Oct
8
comment Is there a standard name for this function?
it's pretty much testing if the function is constant over a domain.
Oct
8
comment OCaml for JVM. Is there any?
Monomorphic types, Functors, Structural subtyping, Polymorphic variants, Recursive types, Recursive modules, Typesetting (the Format module), Macros (camlp4), Non-int numeric literals in patterns
Oct
1
answered Fast permutation -> number -> permutation mapping algorithms
Sep
29
comment Nested union types in F#
Sure, everything but: Monomorphic types, Functors, Structural subtyping, Polymorphic variants, Recursive types, Recursive modules, Typesetting (the Format module), Macros (camlp4), Non-int numeric literals in patterns... and I'm sure a lot more.
Sep
28
comment What’s a stupidly simple way to compile an OCaml project?
this is a really easy way although the documentation sucks. Debugging the program using the toplevel compilation is helpful as well, "ocamlbuild prog.top"
Sep
28
comment What’s a stupidly simple way to compile an OCaml project?
You can type, #use "<filename.ml>" to include a file when the toplevel is running. Don't for get to include extra (compiled) modules (.cma files) on the command line or, #load "filename.cma" in the toplevel.
Sep
25
comment Ocaml: Tree functions
Make sure you examine your trees (write a function to print out graphziv format, for example) to ensure that they are balanced (if you do not do self balancing) or ensure your self balancing is correct to ensure you aren't negating any performance increase a binary tree gives you.
Sep
18
revised Parser/Lexer ignoring incomplete grammar rules
added 226 characters in body
Sep
18
asked Parser/Lexer ignoring incomplete grammar rules
Sep
18
revised Perl recursion techniques?
added 26 characters in body; edited tags