User Nathan Sanders - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:24:12Z http://stackoverflow.com/feeds/user/7851 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1760406/scheme-how-do-i-modify-an-individual-element-in-a-list/1760619#1760619 3 Answer by Nathan Sanders for Scheme - how do I modify an individual element in a list? Nathan Sanders 2009-11-19T03:03:34Z 2009-11-19T03:03:34Z <p>You have to write it yourself. It is not built in to Scheme because it's not idiomatic and it can be built easily from <code>set-car!</code>.</p> <pre><code>(define (list-set! l k obj) (cond ((or (&lt; k 0) (null? l)) #f) ((= k 0) (set-car! l obj)) (else (list-set! (cdr l) (- k 1) obj)))) </code></pre> <p>If you are doing this a lot, you should probably look at using vectors and <code>vector-set!</code> instead.</p> http://stackoverflow.com/questions/1727664/for-each-or-every-keywords-in-scheme/1729551#1729551 4 Answer by Nathan Sanders for "for each" or "every" keywords in Scheme Nathan Sanders 2009-11-13T14:29:19Z 2009-11-13T14:29:19Z <p>You are looking for <code>map</code>, although you probably would like to know that Scheme also has <code>for-each</code>. <code>map</code> does exactly what you want with <code>every</code>. It does something to each item in the list, returning a new list of the results.</p> <p>You could even say</p> <pre><code>(define every map) </code></pre> <p>You can get your <code>first</code> function by writing</p> <pre><code>(define (first symbol) (string-&gt;symbol (string (string-ref (symbol-&gt;string symbol) 0)))) </code></pre> <p>This is bad Scheme style, though. It looks like ancient Lisp from the 60s or 70s, back before strings were in the language. Anyway, Now you can say</p> <pre><code>(map first '(here comes everybody)) =&gt; (h c e) </code></pre> <p><hr></p> <p><code>for-each</code> does some kind of side effect to each item in the list:</p> <pre><code>(define initials (map first '(here comes everybody))) (for-each display initials) =&gt; hce </code></pre> http://stackoverflow.com/questions/1696914/extracting-pure-content-text-from-html-pages-by-excluding-navigation-and-chrome/1698844#1698844 1 Answer by Nathan Sanders for Extracting pure content / text from HTML Pages by excluding navigation and chrome content Nathan Sanders 2009-11-09T02:44:39Z 2009-11-09T02:44:39Z <p>For question (1), I am not sure. I haven't done this before. Maybe one of the other answers will help.</p> <p>For question (2), automatic creation of abstracts is not a developed field. It is usually referred to as 'sentence selection', because the typical approach right now is to just select entire sentences.</p> <p>For question (3), the basic way to create abstracts from machine learning would be to:</p> <ol> <li>Create a corpus of existing abstracts</li> <li>Annotate the abstracts in a useful way. For example, you'd probably want to indicate whether each sentence in the original was chosen and why (or why not).</li> <li>Train a classifier of some sort on the corpus, then use it to classify the sentences in new articles.</li> </ol> <p>My favourite reference on machine learning is Tom Mitchell's <a href="http://rads.stackoverflow.com/amzn/click/0070428077" rel="nofollow">Machine Learning</a>. It lists a number of ways to implement step (3).</p> <p>For question (4), I am sure there are a few papers because my advisor mentioned it last year, but I do not know where to start since I'm not an expert in the field.</p> http://stackoverflow.com/questions/1677621/inheritence-to-extend-a-data-structure-in-haskell/1678741#1678741 0 Answer by Nathan Sanders for Inheritence to extend a data structure in Haskell Nathan Sanders 2009-11-05T06:42:56Z 2009-11-05T06:42:56Z <p>A simple translation breaks out the part that varies but avoids typeclasses:</p> <pre><code>type Vector3D = (Float,Float,Float) data Body = Prism Vector3D | Sphere Double radius (Prism position) = -- code here radius (Sphere r) = r </code></pre> <p>then</p> <pre><code>data Shape = Shape { name :: String, position :: Vector3D, body :: Body } shapeOnly (Shape _ pos _) = -- code here both = radius . body sphereOnly (Shape _ _ (Sphere radius)) = -- code here sphereOnly _ = error "Not a sphere" </code></pre> <p>This is <em>not</em> a really easy question. Data structure design is very different between C++ and Haskell, so I bet that most people coming from an OO language ask the same thing. Unfortunately, the best way to learn is by doing; your best bet is to try it on a case-by-case basis until you learn how things work in Haskell.</p> <p>My answer is pretty simple, but it doesn't deal well with the case where a single C++ subclass has methods that the others don't. It throws a runtime error and requires extra code to boot. You also have to decide whether the "subclass" module decides whether to throw the error or the "superclass" module.</p> http://stackoverflow.com/questions/1641356/is-this-a-better-more-functional-way-to-write-the-following-fsharp-code/1645818#1645818 1 Answer by Nathan Sanders for Is this a better (more functional way) to write the following fsharp code? Nathan Sanders 2009-10-29T18:54:34Z 2009-10-29T18:54:34Z <p>I like your first version better because the indexing gives a better picture of the offsets, which are an important piece of the problem (I assume). The imperative code features the byte offsets prominently, which might be important if your partners can't/don't read the documentation. The functional code emphasises sticking together structures, which would be OK if the byte offsets are not important enough to be mentioned in the documentation either.</p> <p>Indexing is normally accidental complexity, in which case it should be avoided. For example, your first version's loop could be <code>for firmwareVersion in firmwareVersion</code> instead of <code>for i = 0 to loops</code>.</p> <p>Also, like Brian says, using constants for the offsets would make the imperative version even more readable.</p> http://stackoverflow.com/questions/1609851/multiple-exits-from-f-function/1610041#1610041 2 Answer by Nathan Sanders for Multiple Exits From F# Function Nathan Sanders 2009-10-22T21:22:32Z 2009-10-26T02:45:26Z <p>In my opinion, match expressions are the F# analogue of early-exit for calling out erroneous conditions and handling them separately. For your example, I'd write:</p> <pre><code> [&lt;EntryPoint&gt;] let main (args:string[]) = printfn "args.Length is %d" args.Length match args with | [| searchstring; filespace |] -&gt; // much code here ... int Success | _ -&gt; printfn "Two arguments must be passed" int WrongNumberOfArgumentsPassed </code></pre> <p>This separates the error case nicely. In general, if you need to exit from the middle of something, split functions and then put the error case in a <code>match</code>. There's really no limit to how small functions should be in a functional language.</p> <p>As an aside, your use of discriminated unions as sets of integer constants is a little weird. If you like that idiom, be aware that you don't need to include the type name when referring to them.</p> http://stackoverflow.com/questions/1602574/is-there-any-benefit-to-porting-the-haskell-edison-api-and-core-to-f/1603644#1603644 4 Answer by Nathan Sanders for Is there any benefit to porting the Haskell Edison API and Core to F#? Nathan Sanders 2009-10-21T21:06:11Z 2009-10-23T03:26:11Z <p>I haven't read <a href="http://www.eecs.usma.edu/webs/people/okasaki/hw00.ps" rel="nofollow">the paper on edison</a>, but if it's nothing more than the Haskell implementation of Purely Functional Data Structures, doesn't it make more sense to port the SML code that's <em>in</em> the book / thesis? It should be easier than porting Haskell code, which must be annotated for strictness, while F# will have to annotated for laziness.</p> <p>The language used by the book is SML with syntax extensions for lazy evaluation. F# provides half of those extensions natively:</p> <pre><code>&gt; let x = lazy 12;; val x : Lazy&lt;int&gt; = &lt;unevaluated&gt; &gt; match x with | Lazy(n) -&gt; n;; val it : int = 12 &gt; x;; val it : Lazy&lt;int&gt; = 12 </code></pre> <p>To convert the book's <code>fun lazy</code> notation, change this:</p> <pre><code>fun lazy plus ($m, $n) = $m + n </code></pre> <p>To this:</p> <pre><code>let plus (m',n') = lazy ( match (m',n') with | (Lazy(m), Lazy(n)) -&gt; (lazy (m + n)).Force()) </code></pre> <p>(See page 33 in the book). The differences from between SML and F# are minor syntax, so the translation should be easy.</p> <p>As for whether it's worthwhile, most of the data structures in Okasaki's book are very specialised, so they are unlikely to exist already in .NET, even as F#'s immutable Set and Map. It would be worthwhile for the people that need those data structures.</p> http://stackoverflow.com/questions/1611157/how-do-you-make-a-binary-search-tree-in-clojure/1611213#1611213 1 Answer by Nathan Sanders for How do you make a binary search tree in Clojure? Nathan Sanders 2009-10-23T03:18:45Z 2009-10-23T03:18:45Z <p>I don't know Clojure, but I bet it's the same way you do it in Scheme without <code>define-struct</code> ... just cons together the left and right branches. To find something, recurse until you hit an atom.</p> <p>Seriously, though, structmaps sound like what you want. I found <a href="http://clojure.org/data%5Fstructures" rel="nofollow">this page</a>. Look for structmaps about half way down.</p> http://stackoverflow.com/questions/1603629/what-is-the-best-scheme-implementation-for-sys-admin-shell-scripts/1603654#1603654 3 Answer by Nathan Sanders for What is the best Scheme implementation for (sys-admin) shell scripts? Nathan Sanders 2009-10-21T21:07:15Z 2009-10-21T21:07:15Z <p>Have you heard of <a href="http://www.scsh.net/" rel="nofollow">scsh</a>? I haven't used it, but it sounds a lot like what you want.</p> http://stackoverflow.com/questions/1601120/rewriting-c-code-in-f/1603010#1603010 3 Answer by Nathan Sanders for Rewriting C# code in F# Nathan Sanders 2009-10-21T19:19:58Z 2009-10-21T19:19:58Z <p>The part that makes your functional solution ugly is skipping the i'th element, which means indices. Pull that out into a reusable function so that all the ugly index handling is isolated. I call mine RoundRobin.</p> <pre><code>let RoundRobin l = seq { for i in {0..Seq.length l - 1} do yield (Seq.nth i l, Seq.take i l |&gt; Seq.append &lt;| Seq.skip (i+1) l) } </code></pre> <p>It could be a lot uglier if you want to produce an efficient version, though. </p> <p>I couldn't find <code>product</code> in the Seq module, so I wrote my own.</p> <pre><code>let prod (l : seq&lt;float&gt;) = Seq.reduce (*) l </code></pre> <p>Now producing the code is fairly simple:</p> <pre><code>let Lagrange pos value desiredPos = Seq.sum (seq { for (v,(p,rest)) in Seq.zip value (RoundRobin pos) do yield v * prod (seq { for p' in rest do yield (desiredPos - p') / (p - p') }) }) </code></pre> <p>RoundRobin ensures that pos[i] is not included with the rest of pos in the inner loop. To include the <code>val</code> array, I zipped it with the round-robinned <code>pos</code> array.</p> <p>The lesson here is that indexing is very ugly in a functional style. Also I discovered a cool trick: <code>|&gt; Seq.append &lt;|</code> gives you infix syntax for appending sequences. Not quite as nice as <code>^</code> though.</p> http://stackoverflow.com/questions/1593232/issue-with-haskells-do/1597219#1597219 5 Answer by Nathan Sanders for Issue with Haskell's "do" Nathan Sanders 2009-10-20T20:50:12Z 2009-10-20T20:50:12Z <p>If you are new to Haskell, think of <code>do</code> as similar to required braces after <code>if</code> in a C-like language:</p> <pre><code>if (condition) printf("a"); // braces not required else { printf("b"); // braces required finish(); } </code></pre> <p><code>do</code> works the same way in Haskell.</p> <p><hr /></p> <p>Maybe it would help to look at the type of factPrint, and then refactor to use pattern matching:</p> <pre><code>factPrint :: [Int] -&gt; IO () factPrint [] = putStrLn "" factPrint list = do putStrLn (show.fact.head) list factPrint (tail list) </code></pre> <p>So, if factPrint returns <code>IO ()</code>, and the type of <code>putStrLn ""</code> is <code>IO ()</code>, then it's perfectly legal for <code>factPrint []</code> to equal <code>putStrLn ""</code>. No <code>do</code> required--in fact, you could just say <code>factPrint [] = return ()</code> if you didn't want the trailing newline.</p> http://stackoverflow.com/questions/1570100/need-help-understanding-this-erlang-code/1570171#1570171 5 Answer by Nathan Sanders for need help understanding this erlang code Nathan Sanders 2009-10-15T03:39:34Z 2009-10-15T03:39:34Z <p>I don't know Erlang, but this looks just like list comprehensions from a bunch of languages I do know. Hopefully this guess will help you until somebody who knows Erlang can answer:</p> <pre><code>[Pid2 ! {delete, V1a} || {Pid1a, V1a} &lt;- PV1a, Pid2 &lt;- P2, Pid1a /= Pid2], </code></pre> <p>Translates to imperative-style pseudocode:</p> <pre><code>For each item in PV1a, unpacking item to {Pid1a, V1a} For each Pid2 in P2 If Pid1a /= Pid2 Pid2 ! {delete, V1a} </code></pre> <p>In other words, for each Pid in PV1a and P2, send the message delete V1a to Pid2 as long as Pid1 and Pid2 are not the same Pid.</p> http://stackoverflow.com/questions/1521544/does-anyone-use-the-scheme-programming-language-for-a-living/1523528#1523528 7 Answer by Nathan Sanders for Does anyone use the Scheme programming language for a living? Nathan Sanders 2009-10-06T03:57:57Z 2009-10-06T03:57:57Z <p>There are plenty of people who write Scheme for a living. They're university professors, though, mostly in the field of programming languages--there are several here at Indiana University, like <a href="http://en.wikipedia.org/wiki/R.%5FKent%5FDybvig" rel="nofollow">Kent Dybvig</a> and <a href="http://en.wikipedia.org/wiki/Daniel%5FP.%5FFriedman" rel="nofollow">Dan Friedman</a>. They prototype new ideas in programming language semantics (and Dybvig also sells a Scheme compiler).</p> <p>This is not a field that has a lot of paying customers, so technically the professors are paid because they have tenure at a university. But they got tenure by publishing new ideas in programming languages.</p> <p>There are also some professors who advocate the use of Scheme as a teaching language, like <a href="http://en.wikipedia.org/wiki/Matthias%5FFelleisen" rel="nofollow">Matthias Felleisen</a> and the others behind <a href="http://en.wikipedia.org/wiki/PLT%5FScheme" rel="nofollow">PLT Scheme</a>. They also write Scheme for a living.</p> <p>Scheme is great for trying out new language semantics because it has very simple, powerful primitives and the uniform syntax lets you concentrate only on the semantics. If you are designing a new programming language, prototyping it in Scheme might be a useful first step. Scheme doesn't get in the way of new ideas because it includes so few of its own.</p> http://stackoverflow.com/questions/1501287/learning-scheme-macros-help-me-write-a-define-syntax-rule/1501490#1501490 2 Answer by Nathan Sanders for Learning Scheme Macros. Help me write a define-syntax-rule Nathan Sanders 2009-10-01T01:37:05Z 2009-10-02T17:15:19Z <p>In other words, you decided that <code>for</code> really only needs one pattern and want to write something like:</p> <pre><code>(defmacro (for ,i from ,x to ,y step ,body) ; code goes here ) </code></pre> <p>There is nothing built-in to Scheme that makes single-pattern macros faster to write. The traditional solution is (surprise!) to write another macro. </p> <p>I have used <a href="http://barzilay.org/Swindle/misc-doc.html" rel="nofollow"><code>defsubst</code> from Swindle</a>, and PLT Scheme <a href="http://docs.plt-scheme.org/guide/pattern-macros.html" rel="nofollow">now ships with <code>define-syntax-rule</code></a> which does the same thing. If you are learning macros, then writing your own <code>define-syntax-rule</code> equivalent would be a good exercise, particularly if you want some way to indicate keywords like "for" and "from". Neither <code>defsubst</code> nor <code>define-syntax-rule</code> handle those.</p> http://stackoverflow.com/questions/1457140/haskell-composition-vs-fs-pipe-forward-operator/1458508#1458508 3 Answer by Nathan Sanders for Haskell composition (.) vs F#'s pipe forward operator (|>) Nathan Sanders 2009-09-22T06:57:25Z 2009-09-22T06:57:25Z <p>More speculation, this time from the predominantly Haskell side... </p> <p><code>($)</code> is the flip of <code>(|&gt;)</code>, and its use is quite common when you can't write point-free code. So the main reason that <code>(|&gt;)</code> not used in Haskell is that its place is already taken by <code>($)</code>.</p> <p>Also, speaking from a bit of F# experience, I think <code>(|&gt;)</code> is so popular in F# code because it resembles the <code>Subject.Verb(Object)</code> structure of OO. Since F# is aiming for a smooth functional/OO integration, <code>Subject |&gt; Verb Object</code> is a pretty smooth transition for new functional programmers.</p> <p>Personally, I like thinking left-to-right too, so I use <code>(|&gt;)</code> in Haskell, but I don't think many other people do.</p> http://stackoverflow.com/questions/1452070/how-to-structure-haskell-code-for-io/1452198#1452198 2 Answer by Nathan Sanders for How to structure Haskell code for IO? Nathan Sanders 2009-09-20T22:33:46Z 2009-09-20T22:33:46Z <p>yairchu has a good answer for your problem with printBody. Your central question, how to structure your program so that you can print out each step, is a little harder. Presumably you want to keep <code>runSim</code>, or something like it, pure, since it's just running the simulation, and I/O isn't really its job.</p> <p>There are two ways I would approach this: either make runSim return an infinite list of simulation steps, or make the I/O wrapper run only one step at a time. I prefer the first option, so I'll start with that.</p> <p>Change <code>runSim</code> to return a list of steps:</p> <pre><code>runSim :: [Body] -&gt; Double -&gt; [[Body]] -- now returns a list of bodys, but no terminating condition runSim bodys numSteps dtparam = nextBodys : runSim nextBodys dtparam where nextBodys = map (integratePos dtparam . integrateVel dtparam) (calculateForce bodys) </code></pre> <p>Now <code>main</code> can take as many steps of the simulation as it wants and print them out:</p> <pre><code>main = mapM_ (mapM_ print) (take 100 $ runSim [earth, sun] 0.05) </code></pre> <p>Again, I'll assume that, following yairchu's advice, you have <code>Body deriving Show</code> so that <code>print</code> will work. <code>mapM_</code> is like <code>map</code>, except that it takes a monadic (here, side-effecting) function to map (ends with M) and doesn't return the list (ends with _). So really it's more like <code>for-each</code> in Scheme or something.</p> <p>The alternative is to keep your <code>runSim</code> and write a print loop that only runs one step at a time:</p> <pre><code>printLoop :: Integer -&gt; [Body] -&gt; IO [Body] printLoop 0 bodies = return bodies printLoop n bodies = do let planets = runSim bodies 1 0.05 mapM_ print planets -- still need to have Body deriving Show printLoop (n-1) planets main = do printLoop 100 [earth, sun] return () </code></pre> http://stackoverflow.com/questions/1423002/how-different-programming-languages-use-closures/1424939#1424939 1 Answer by Nathan Sanders for How different programming languages use closures? Nathan Sanders 2009-09-15T03:14:55Z 2009-09-15T03:14:55Z <p>The main <em>intentional</em> difference in semantics between the mainstream languages is whether to allow changes to variables captured by the closure. Java and Python say no, the other languages say yes (well, I don't know Objective C, but the rest do). The advantage to being able to change variables is that you can write code like this:</p> <pre><code>public static Func&lt;int,int&gt; adderGen(int start) { return (delegate (int i) { // &lt;-- start is captured by the closure start += i; // &lt;-- and modified each time it's called return start; }); } // later ... var counter = adderGen(0); Console.WriteLine(counter(1)); // &lt;-- prints 1 Console.WriteLine(counter(1)); // &lt;-- prints 2 // : // : </code></pre> <p>You'll notice that this is a lot less code than the equivalent counter class, although C# (the language used here) generates exactly that code for you behind the scenes. The downside is that captured variables really are shared, so if you generate a bunch of adders in a classic for loop you are in for a surprise...</p> <pre><code>var adders = new List&lt;Func&lt;int,int&gt;&gt;(); for(int start = 0; start &lt; 5; start++) { adders.Add(delegate (int i) { start += i; return start; }); } Console.WriteLine(adders[0](1)); // &lt;-- prints 6, not 1 Console.WriteLine(adders[4](1)); // &lt;-- prints 7, not 5 </code></pre> <p>Not only is <code>start</code> is shared across all 5 closures, the repeated <code>start++</code> gives it the value 5 at the end of the for loop. In a mixed paradigm language, my <strong>opinion</strong> is that Java and Python have the right idea--if you want to mutate captured variables, you're better off being forced to make a class instead, which makes the capture process explicit, when you pass them to the constructor, for example. I like to keep closures for functional programming.</p> <p>By the way, Perl has closures too.</p> http://stackoverflow.com/questions/1360562/lisp-void-variable-error-when-evaluating-function/1365940#1365940 0 Answer by Nathan Sanders for Lisp void-variable error when evaluating function Nathan Sanders 2009-09-02T05:16:10Z 2009-09-02T05:16:10Z <ol> <li>You need an extra close parenthesis at the end of your function.</li> <li>You need a space in the first clause of the second if: <code>(+fn1 fn2)</code> should be <code>(+ fn1 fn2)</code>. ELisp otherwise reads it as passing <code>fn2</code> to a function named <code>+fn1</code>.</li> </ol> <p>Couple of other style issues:</p> <ol> <li>A <code>cond</code> is a lot easier to read than nested ifs, especially using ELisp indentation style.</li> <li><code>=</code> is the normal predicate used for comparing numbers, not <code>equal</code>. Although <code>equal</code> will work, it looks funny to the reader. (At least it does in all the other Lisps I know, I could be wrong because I don't know ELisp as well.)</li> </ol> <p>Here's how I'd restructure the function.</p> <pre><code>(defun sumfib (n fn1 fn2 sum) "Calculate Fibonacci numbers up to 4,000,000 and sum all the even ones" (cond ((&lt; 4000000 (+ fn1 fn2)) sum) ((= n 3) (sumfib 1 (+ fn1 fn2) fn1 (+ sum (+ fn1 fn2)))) (t (sumfib (1+ n) (+ fn1 fn2) fn1 sum)))) </code></pre> <p>I ran it, and it returns an answer, but I don't know if it's right according to the project euler specification.</p> http://stackoverflow.com/questions/1206655/simple-library-to-do-utf-8-in-haskell-since-streams-no-longer-compile/1206725#1206725 1 Answer by Nathan Sanders for Simple library to do UTF-8 in Haskell (since Streams no longer compile) Nathan Sanders 2009-07-30T13:47:09Z 2009-08-01T23:06:32Z <p>Edit: </p> <p>L. Kolmodin is right: utf8-string or text is the right answer. I'll leave my original answer below for reference. Google seems to have steered me wrong in choosing IConv. (The equivalent of my IConv wrapper function is already in utf8-string as <code>Codec.Binary.UTF8.String.encodeString</code>.)</p> <p><hr /></p> <p>Here is what I've been using--I may not remember the complete solution, so let me know if you still run into problems:</p> <p>From Hackage, install <a href="http://hackage.haskell.org/package/iconv-0.4.0.2" rel="nofollow">IConv</a>. Unfortunately, <code>Codec.Text.IConv.convert</code> operates on bytestrings, not strings. I guess you could read files directly as bytestrings, but I wrote a converter since HaXml uses normal strings:</p> <pre><code>import qualified Data.ByteString.Lazy.Char8 as B utf8FromLatin1 = B.unpack . convert "LATIN1" "UTF-8" . B.pack </code></pre> <p>Now, on Mac OS, you have to compile with</p> <pre><code>$ ghc -O2 --make -L/usr/lib -L/opt/local/lib Whatever.hs </code></pre> <p>Because there was some library conflict, I think with MacPorts, I have to point explicitly to the built-in <code>iconv</code> libraries. There is probably a way to always pass those -L flags to ghc, but I haven't looked it up yet.</p> http://stackoverflow.com/questions/1207649/the-meaning-of-in-haskell-function-name/1207675#1207675 3 Answer by Nathan Sanders for The meaning of ' in Haskell function name? Nathan Sanders 2009-07-30T16:15:54Z 2009-07-30T16:15:54Z <p>quote ' is just another allowed character in Haskell names. It's often used to define variants of functions, in which case quote is pronounced 'prime'. Specifically, the Haskell libraries use quote-variants to show that the variant is strict. For example: <code>foldl</code> is lazy, <code>foldl'</code> is strict.</p> <p>In this case, it looks like the quote is just used to separate the curried and uncurried variants.</p> http://stackoverflow.com/questions/1159208/can-i-use-common-lisp-for-sicp-or-is-scheme-the-only-option/1159322#1159322 7 Answer by Nathan Sanders for Can I use Common Lisp for SICP or is Scheme the only option? Nathan Sanders 2009-07-21T13:49:00Z 2009-07-21T13:49:00Z <p>Do you already know some Common Lisp? I assume that is what you mean by 'Lisp'. In that case you might want to use it instead of Scheme. If you don't know either, and you are working through SICP solely for the learning experience, then probably you are better off with Scheme. It has much better support for new learners, and you won't have to translate from Scheme to Common Lisp. </p> <p>There are differences; specifically, SICP's highly functional style is wordier in Common Lisp because you have to quote functions when passing them around and use <code>funcall</code> to call a function bound to a variable.</p> <p>However, if you want to use Common Lisp, you can try using <a href="http://eli.thegreenplace.net/category/programming/lisp/sicp/" rel="nofollow">Eli Bendersky's Common Lisp translations of the SICP code</a>.</p> http://stackoverflow.com/questions/1153465/what-does-the-symbol-mean-in-reference-to-lists-in-haskell/1153485#1153485 17 Answer by Nathan Sanders for What does the "@" symbol mean in reference to lists in Haskell? Nathan Sanders 2009-07-20T13:10:42Z 2009-07-20T14:26:30Z <p>Yes, it's just syntactic sugar, with <code>@</code> read aloud as "as". <code>ps@(p:pt)</code> gives you names for </p> <ol> <li>the list: <code>ps</code> </li> <li>the list's head : <code>p</code></li> <li>the list's tail: <code>pt</code> </li> </ol> <p>Without the <code>@</code>, you'd have to choose between (1) or (2):(3). </p> <p>This syntax actually works for any constructor; if you have <code>data Tree a = Tree a [Tree a]</code>, then <code>t@(Tree _ kids)</code> gives you access to both the tree and its children.</p> http://stackoverflow.com/questions/1114646/please-help-me-add-up-the-elements-for-this-structure-in-scheme-lisp/1114701#1114701 1 Answer by Nathan Sanders for Please Help me add up the elements for this structure in Scheme/Lisp Nathan Sanders 2009-07-11T21:37:23Z 2009-07-11T21:37:23Z <p>You need to break the problem into two parts: first, transform the list into something like this:</p> <pre><code>'(((lady-in-water . 1.25) (lady-in-water . 0.82) (lady-in-water . 0.88)) ((snake . 1.75) ...) ...) </code></pre> <p>I'll do that using <code>transpose</code>:</p> <pre><code>(define (transpose ls) (if (null? (car ls)) '() (cons (map car ls) (transpose (map cdr ls))))) </code></pre> <p>Then it's easy to reduce the transposed movie list to a single list of pairs:</p> <pre><code> (define (sum-movie movie) (cons (caar movie) (apply + (map cdr movie)))) (define (sum-movies movies) (map sum-movie (transpose movies))) </code></pre> <p>Note that <code>transpose</code> is unsafe: it will crash if you are missing a movie in one sub-list. Also, using <code>transpose</code> in the first place assumes that movies come in the same order each time.</p> http://stackoverflow.com/questions/1090739/how-to-improve-this-mergesort-in-scheme/1092847#1092847 1 Answer by Nathan Sanders for How to improve this mergesort in scheme ? Nathan Sanders 2009-07-07T15:00:12Z 2009-07-07T15:00:12Z <p>There's only one small improvement that I see:</p> <pre><code>(append (cons (car listTwo) '()) (merge listOne (cdr listTwo)))) </code></pre> <p>can everywhere be simplified to</p> <pre><code>(cons (car listTwo) (merge listOne (cdr listTwo))) </code></pre> <p>I think you were thinking of something like (in Python-esque syntax):</p> <pre><code>[car(listTwo)] + merge(listOne, cdr(listTwo)) </code></pre> <p>But cons adds an item directly to the front of a list, like a functional <code>push</code>, so it's like the following code:</p> <pre><code>push(car(listTwo), merge(listOne, cdr(listTwo))) </code></pre> <p>Ultimately the extra append only results in double cons cell allocation for each item, so it's not a big deal.</p> <p>Also, I think you might get better performance if you made <code>mergesort</code> fancier so that it maintains the list length and sorts both halves of the list at each step. This is probably not appropriate for a learning example like this, though.</p> <p>Something like:</p> <pre><code>(define (mergesort l) (let sort-loop ((l l) (len (length l))) (cond ((null? l) '()) ((null? (cdr l)) l) (else (merge (sort-loop (take (/ len 2) l) (/ len 2))) (sort-loop (drop (/ len 2) l) (/ len 2))))))))) (define (take n l) (if (= n 0) '() (cons (car l) (take (sub1 n) (cdr l))))) (define (drop n l) (if (= n 0) l (drop (sub1 n) (cdr l)))) </code></pre> http://stackoverflow.com/questions/1084249/scheme-coding-style-questions/1084564#1084564 4 Answer by Nathan Sanders for Scheme Coding Style Questions Nathan Sanders 2009-07-05T18:17:11Z 2009-07-05T18:17:11Z <p>To fill in Doug's answer for your specific questions:</p> <pre><code>(if test then else) (cond (test1 exp1) (test2 exp2) (else exp3)) </code></pre> <p>Or, for conds with long series of expressions:</p> <pre><code>(cond (test1 exp1 exp2) (else exp3 exp4)) </code></pre> <p>Comment conventions are a little looser. When I am writing careful code, I do something like this:</p> <pre><code>;;; new section ;;; ;;; section comments (define (f g . x) "docstring goes here" ;; in-function comments (g x)) ; trailing line comment </code></pre> <p>But the exact boundaries for <code>;</code> vs <code>;;</code> usage vary. In particular, some people (including me) do not much like trailing line comments and will instead use <code>;</code> for in-function comments and <code>;;;</code> for section comments.</p> http://stackoverflow.com/questions/1070926/equivalent-for-inject-in-python/1071028#1071028 3 Answer by Nathan Sanders for Equivalent for inject() in Python? Nathan Sanders 2009-07-01T19:57:41Z 2009-07-01T19:57:41Z <p>I think you probably want to use <code>all</code>, which is less general than <code>inject</code>. <code>reduce</code> is the Python equivalent of <code>inject</code>, though.</p> <pre><code>all(n % 2 == 1 for n in [1, 3, 5, 7]) </code></pre> http://stackoverflow.com/questions/1053926/clojure-while-loop/1053973#1053973 4 Answer by Nathan Sanders for Clojure While Loop Nathan Sanders 2009-06-28T01:01:44Z 2009-06-28T01:01:44Z <p>I don't know Clojure, but it looks that, like Scheme, it supports "let loops":</p> <pre><code>(loop [char (readChar)] (if (= char delimiter) '() (do (some-processing) (recur (readChar))))) </code></pre> <p>Hope this is enough to get you started. I referred to <a href="http://clojure.org/special_forms#toc9" rel="nofollow">http://clojure.org/special_forms#toc9</a> to answer this question.</p> <p>NOTE: I know that Clojure discourages side-effects, so presumably you want to return something useful instead of '().</p> http://stackoverflow.com/questions/1017621/functional-programming-in-python/1017937#1017937 8 Answer by Nathan Sanders for Functional programming in Python Nathan Sanders 2009-06-19T13:22:56Z 2009-06-19T13:22:56Z <p>The question you reference asks which languages promote both OO and functional programming. Python does not <em>promote</em> functional programming even though it <em>works</em> fairly well.</p> <p>The best argument <em>against</em> functional programming in Python is that imperative/OO use cases are carefully considered by Guido, while functional programming use cases are not. When I write imperative Python, it's one of the prettiest languages I know. When I write functional Python, it becomes as ugly and unpleasant as your average language that doesn't have a BDFL.</p> <p>Which is not to say that it's bad, just that you have to work harder than you would if you switched to a language to promotes functional programming or switched to writing OO Python.</p> <p>Here are the functional things I miss in Python:</p> <ul> <li>Pattern matching</li> <li>Tail recursion</li> <li>Large library of list functions</li> <li>Functional dictionary class</li> <li>Automatic currying</li> <li>Concise way to compose functions</li> <li>Lazy lists</li> <li>Simple, powerful expression syntax (Python's simple block syntax prevents Guido from adding it)</li> </ul> <p><hr /></p> <ul> <li>No pattern matching and no tail recursion mean your basic algorithms have to be written imperatively. Recursion is ugly and slow in Python.</li> <li>A small list library and no functional dictionaries mean that you have to write a lot of stuff yourself. </li> <li>No syntax for currying or composition means that point-free style is about as full of punctuation as explicitly passing arguments.</li> <li>Iterators instead of lazy lists means that you have know whether you want efficiency or persistence, and to scatter calls to <code>list</code> around if you want persistence. (Iterators are use-once)</li> <li>Python's simple imperative syntax, along with its simple LL1 parser, mean that a better syntax for if-expressions and lambda-expressions is basically impossible. Guido likes it this way, and I think he's right.</li> </ul> http://stackoverflow.com/questions/985603/fetch-elements-from-list-in-scheme/986707#986707 1 Answer by Nathan Sanders for Fetch elements from List in scheme Nathan Sanders 2009-06-12T13:44:20Z 2009-06-12T13:44:20Z <p>leppie and Jonas give the right answer for iterating over a list in Scheme. However, if you need to get a single value in a list, use <code>list-ref</code>.</p> <pre><code>(let ((l '(1 2 3 4))) (list-ref l 2)) =&gt; 3 </code></pre> <p>Is mostly equivalent to the Java code</p> <pre><code>int[] l = new int[] { 1, 2, 3, 4 }; return l[2]; </code></pre> http://stackoverflow.com/questions/984372/how-to-mock-for-testing-in-haskell/984425#984425 3 Answer by Nathan Sanders for How to mock for testing in Haskell? Nathan Sanders 2009-06-12T00:06:52Z 2009-06-12T13:31:38Z <p>Couldn't you just pass a function named <code>g</code> to <code>f</code>? As long as <code>g</code> satisfies the interface <code>typeOfSomeParms -&gt; gReturnType</code>, then you should be able to pass in the real function or a mock function.</p> <p>eg</p> <pre><code>f g = do ... g someParams ... </code></pre> <p>I have not used dependency injection in Java myself, but the texts I have read made it sound a lot like passing higher-order functions, so maybe this will do what you want.</p> <p><hr /></p> <p>Response to edit: ephemient's answer is better if you need to solve the problem in an enterprisey way, because you define a type containing multiple functions. The prototyping way I propose would just pass a tuple of functions without defining a containing type. But then I hardly ever write type annotations, so refactoring that is not very hard.</p> http://stackoverflow.com/questions/1683479/how-to-convert-a-list-to-num-in-scheme/1683614#1683614 Comment by Nathan Sanders on how to convert a list to num in scheme? Nathan Sanders 2009-11-06T07:14:07Z 2009-11-06T07:14:07Z <code>length</code> and <code>power</code> are already defined in Scheme, although <code>expt</code> is the name of the latter. http://stackoverflow.com/questions/1677621/inheritence-to-extend-a-data-structure-in-haskell/1678113#1678113 Comment by Nathan Sanders on Inheritence to extend a data structure in Haskell Nathan Sanders 2009-11-05T06:47:15Z 2009-11-05T06:47:15Z I thought that was an academic toy for advanced Haskellers, not a tool to ease the transition for C++ programmers. (The giveaway is &quot;OOHaskell lends itself as a sandbox for typed OO language design.&quot;) http://stackoverflow.com/questions/1641356/is-this-a-better-more-functional-way-to-write-the-following-fsharp-code/1645818#1645818 Comment by Nathan Sanders on Is this a better (more functional way) to write the following fsharp code? Nathan Sanders 2009-10-30T17:03:26Z 2009-10-30T17:03:26Z Yes, garbage is often the cause of performance problems in my functional programs. You can either be clever or use low-level destructive functions. For the first approach, take a look at Purely Functional Data Structures: <a href="http://www.eecs.usma.edu/webs/people/okasaki/pubs.html#cup98" rel="nofollow">eecs.usma.edu/webs/people/&hellip;</a>. For the second approach, I can imagine an Array.concat_destructive which pre-allocates a fixed amount of memory and fills it with its arguments. Or you might get the compiler to do the dirty work for you--see chapter 25 of Real World Haskell (<a href="http://book.realworldhaskell.org/read/profiling-and-optimization.html" rel="nofollow">book.realworldhaskell.org/read/&hellip;</a>) http://stackoverflow.com/questions/1614724/is-learning-lisp-useful-at-all-these-days/1614801#1614801 Comment by Nathan Sanders on Is learning LISP useful at all these days? Nathan Sanders 2009-10-23T17:22:16Z 2009-10-23T17:22:16Z Can you give some examples for Common Lisp? The only people I know are the ones working with Kevin Knight at USC/Information Sciences Institute. http://stackoverflow.com/questions/1609851/multiple-exits-from-f-function/1610041#1610041 Comment by Nathan Sanders on Multiple Exits From F# Function Nathan Sanders 2009-10-22T22:37:34Z 2009-10-22T22:37:34Z Strange. When you use a discriminated union like an enum, it requires the full namespace. In your situation (you don't pattern match on the types), I would just declare a set of integer constants. http://stackoverflow.com/questions/1603629/what-is-the-best-scheme-implementation-for-sys-admin-shell-scripts/1603654#1603654 Comment by Nathan Sanders on What is the best Scheme implementation for (sys-admin) shell scripts? Nathan Sanders 2009-10-22T21:23:55Z 2009-10-22T21:23:55Z I would, but I refuse to acknowledge that R6RS exists. :P http://stackoverflow.com/questions/1603629/what-is-the-best-scheme-implementation-for-sys-admin-shell-scripts/1603654#1603654 Comment by Nathan Sanders on What is the best Scheme implementation for (sys-admin) shell scripts? Nathan Sanders 2009-10-21T21:48:29Z 2009-10-21T21:48:29Z This is always the case with Scheme. :) http://stackoverflow.com/questions/1577279/scheme-how-to-return-multiple-values Comment by Nathan Sanders on Scheme How To Return Multiple Values? Nathan Sanders 2009-10-16T15:34:11Z 2009-10-16T15:34:11Z Did you know you can post an answer to your own question? (If you like getting points on Stack Overflow. :) http://stackoverflow.com/questions/1542087/do-any-one-use-dr-scheme-programming-how-to-sort-using-list/1542258#1542258 Comment by Nathan Sanders on do any one use Dr scheme programming? how to sort using list? Nathan Sanders 2009-10-10T01:49:17Z 2009-10-10T01:49:17Z Actually, sort is <i>not</i> built in to R5RS Scheme. (<a href="http://schemers.org/Documents/Standards/R5RS/HTML/r5rs-Z-H-15.html#%_index_start" rel="nofollow">schemers.org/Documents/Standards/&hellip;</a>). Bubble sort is also a bad choice for Scheme; it is very hard to write compared to insertion sort, for example. http://stackoverflow.com/questions/1513499/tail-recursion-optimization-in-oz/1513554#1513554 Comment by Nathan Sanders on Tail-recursion optimization in oz Nathan Sanders 2009-10-03T16:50:40Z 2009-10-03T16:50:40Z I only know Oz from reading Peter Van Roy's <i>Concepts, Techniques, and Models of Computer Programming</i>, but it does in fact has incomplete values--they are used extensively in concurrent programming, because reading an incomplete value cause the current thread to block. So Pascal's guess is probably how it works. (Here is the book link: <a href="http://www.info.ucl.ac.be/~pvr/book.html" rel="nofollow">info.ucl.ac.be/~pvr/book.html</a> He used to have a draft version online, but has removed it. :( ) http://stackoverflow.com/questions/1501287/learning-scheme-macros-help-me-write-a-define-syntax-rule/1501490#1501490 Comment by Nathan Sanders on Learning Scheme Macros. Help me write a define-syntax-rule Nathan Sanders 2009-10-02T17:11:10Z 2009-10-02T17:11:10Z It's probably new since I last used PLT. Thanks for the terminology; I don't use keywords so I didn't know what they're called. http://stackoverflow.com/questions/1459190/which-out-of-python-ruby-f-is-better-for-learning-as-first-programming-langu/1461633#1461633 Comment by Nathan Sanders on Which out of Python, Ruby, F# is better for learning as first programming language with dynamic type system? Nathan Sanders 2009-09-23T02:59:30Z 2009-09-23T02:59:30Z Also, F# has a pretty advanced type-system. :) After all, it integrates OO and functional types. http://stackoverflow.com/questions/1451677/scheme-equivalent-to-haskell-where-clause/1451687#1451687 Comment by Nathan Sanders on Scheme equivalent to Haskell where clause Nathan Sanders 2009-09-20T22:08:26Z 2009-09-20T22:08:26Z If you know Haskell, you are probably better off with not using the &quot;beginning language&quot; subset of Drscheme. The entirety of scheme is already small, much smaller than Haskell. http://stackoverflow.com/questions/1423002/how-different-programming-languages-use-closures/1424939#1424939 Comment by Nathan Sanders on How different programming languages use closures? Nathan Sanders 2009-09-15T15:24:59Z 2009-09-15T15:24:59Z Oh, right, I forgot. I used Python 2.x for too long compared to Python 3.x. http://stackoverflow.com/questions/1364237/is-there-a-modeling-language-for-the-functional-programming-paradigm/1364253#1364253 Comment by Nathan Sanders on Is there a modeling language for the functional programming paradigm? Nathan Sanders 2009-09-02T01:44:48Z 2009-09-02T01:44:48Z For example, would game theory be useful in modelling the game you said you were developing? I don't know, I'm a grad student in computational linguistics, and my statistical and linguistic models do a pretty good job at capturing the high-level view of my Haskell (and C++!) code.