active questions tagged scheme - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T05:30:55Z http://stackoverflow.com/feeds/tag/scheme http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1919702/assigning-the-result-of-an-expression-to-a-variable 0 Assigning the result of an expression to a variable Steve 2009-12-17T05:45:05Z 2009-12-20T04:19:41Z <p>Working with DrScheme (language-- Pretty Big). Trying to pass the result of an expression to a variable that can later be used in another expression. Here is a simplified version of the problem:</p> <p>Definitions window:</p> <pre><code>(define (tot a b c) (+ a b c)) (define (tot2) (+ (tot a b c) 1)) </code></pre> <p>Interpreter window</p> <pre><code>&gt; (tot 5 6 7) 18 &gt; (tot2) . . reference to undefined identifier: a </code></pre> <p>The result I want, of course, is 19. It would be easy to have DrScheme do all the algebra at once, but I need to have it solve the first expression, then solve the second expression based on the result of the first.</p> http://stackoverflow.com/questions/1931654/what-is-the-difference-between-latent-type-and-manifest-type 1 What is the difference between Latent type and Manifest type? kunjaan 2009-12-19T01:38:38Z 2009-12-20T02:10:17Z <p>Could someone give me a clear distinction between latent and manifest type system?</p> http://stackoverflow.com/questions/1931926/scheme-programming-language 0 Scheme programming language Charles Brow Jr. 2009-12-19T04:13:15Z 2009-12-19T04:23:29Z <p>I am developing a small program in Scheme but I got stuck. Is there anything similar to Java's indexOf() that I could use in Scheme?</p> http://stackoverflow.com/questions/1930901/exclusive-or-in-scheme 0 Exclusive OR in Scheme Jeffrey Aylesworth 2009-12-18T21:56:32Z 2009-12-19T01:01:13Z <p>What is the exclusive or functions in scheme? I've tried <code>xor</code> and <code>^</code>, but both give me an unbound local variable error.</p> <p>Googling found nothing.</p> http://stackoverflow.com/questions/1926099/a-function-in-scheme-to-replace-all-occurences-of-an-element-in-a-list-with-anoth 1 A function in scheme to replace all occurences of an element in a list with another element nan1 2009-12-18T03:30:56Z 2009-12-18T04:16:48Z <p>Hi I am able to delete the element from a list.But I have no idea how to write a function in scheme to replace all occurences of an element in a list with another element. Any help will be appreciated.</p> http://stackoverflow.com/questions/1919097/functional-programming-what-is-an-improper-list 5 Functional Programming: what is an "improper list" ? jldupont 2009-12-17T02:18:02Z 2009-12-17T18:26:39Z <p>Could somebody explain what an "improper list" is?</p> <p><strong>Note</strong>: Thanks to all ! All you guys rock!</p> http://stackoverflow.com/questions/59428/learning-lisp-scheme-interpreter 5 Learning LISP/Scheme - Interpreter David in Dakota 2008-09-12T16:23:12Z 2009-12-17T05:18:45Z <p>Hey everyone, </p> <p>I've been making my way through The Little Schemer and was wondering what environment/ide/interpreter would be best to use in order to test any of the Scheme code I jot down for myself.</p> <p>Thanks</p> http://stackoverflow.com/questions/1908710/function-in-scheme-that-checks-whether-the-length-of-a-list-is-even 0 Function in Scheme that checks whether the length of a list is even nan 2009-12-15T16:39:41Z 2009-12-16T23:20:37Z <p>Hi I have edited the code for function in scheme that checks whether the length of a list is even.</p> <pre><code>(define even-length? (lambda (l) (cond ((null? l)#f) ((equal? (remainder (length(l)) 2) 0) #t) (else #f)))) </code></pre> <p>Is it corrrect?</p> http://stackoverflow.com/questions/1904454/best-dynamic-languages-for-opengl-general-graphics 1 Best dynamic languages for OpenGL/general graphics Rock and or Roll 2009-12-15T00:17:14Z 2009-12-15T06:21:37Z <p>Which are the most mature and well supported solutions for writing graphical programs?</p> <p>I have been using C++ with OpenGL/GLUT, but would like to try a more flexible and expressive approach.</p> <p>Ruby and Processing? Python and OGRE? What things have worked well for you?</p> http://stackoverflow.com/questions/1905222/how-to-delete-an-element-from-a-list-in-scheme 1 How to delete an element from a list in scheme nan 2009-12-15T04:46:44Z 2009-12-15T05:42:32Z <p>how to delete an element from a list ex:- list=[1 2 3 4]</p> <p>I have come up with some code.I think I got wrong somewhere.</p> <pre><code> (define delete item (lambda (list) (cond ((equal?item (car list)) cdr list) (cons(car list)(delete item (cdr list)))))) </code></pre> http://stackoverflow.com/questions/985188/loop-in-scheme 3 Loop in scheme fireball003 2009-06-12T05:49:29Z 2009-12-14T22:10:09Z <p>Hi, How can I implement loop in plt-scheme like in java-</p> <pre><code>for(int i=0;i&lt;10;){ for(int j=0;j&lt;3;){ System.out.println(""+j); j++; } System.out.println(""+i); i++; } </code></pre> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1885019/how-do-i-write-all-but-one-function-in-scheme-lisp 1 How do I write all-but-one function in Scheme/LISP? kunjaan 2009-12-11T00:12:57Z 2009-12-14T18:53:57Z <p>Can you guys think of the shortest and the most idiomatic solution to all-but-one function?</p> <pre><code>;; all-but-one ;; checks if all but one element in a list holds a certain property ;; (all-but-one even? (list 1 2 4)) -&gt; true ;; (all-but-one even? '(1)) -&gt; true ;; (all-but-one even? '(2 4)) -&gt; false </code></pre> <p>Edit: all but EXACTLY one.</p> http://stackoverflow.com/questions/1890853/using-bitmask-from-pltscheme-ffi 0 Using _bitmask from PltScheme FFI Slartibartfast 2009-12-11T21:02:59Z 2009-12-14T18:27:01Z <p>This is a part of a plt-scheme wrapper library:</p> <pre><code>(define InputMask (_bitmask '(NoEventMask = #x00000000 KeyPressMask = #x00000001 KeyReleaseMask = #x00000002 ... OwnerGrabButtonMask = #x01000000) _long)) </code></pre> <p>The thing is I cant figure out how to access fields in a bitmask (or enum for that matter). How can I get KeyPressMask value for example?</p> http://stackoverflow.com/questions/1895399/programatically-filling-in-a-letrec-in-scheme-macros-or-eval 1 Programatically filling in a letrec in Scheme. Macros or eval? z5h 2009-12-13T02:45:35Z 2009-12-13T10:00:21Z <p>I'm just playing with an NFA for string recognition. I have a macro that creates a function which consumes input and passes on the rest to some other functions. Because there might be loops in my NFA graph, I'm using letrec to put the whole thing together. Here is some code (been testing in PLT-Scheme):</p> <pre><code>(define-syntax-rule (match chars next accepting) ; a function that consumes a list of chars from a list l. ; on success (if there's more to do) invokes each of next on the remainder of l. (lambda (l) (let loop ((c chars) (s l)) (cond ((empty? c) (cond ((and (empty? s) accepting) #t) (else (ormap (lambda (x) (x s)) next)))) ((empty? s) #f) ((eq? (car c) (car s)) (loop (cdr c) (cdr s))) (else #f))))) ; matches (a|b)*ac. e .g. '(a a b b a c) (define (matches? l) (letrec ([s4 (match '( ) '() #t)] [s3 (match '(c) `(,s4) #f)] [s2 (match '(a) `(,s3) #f)] [s1 (match '( ) `(,s2 ,s5) #f)] [s5 (match '( ) `(,s6 ,s7) #f)] [s6 (match '(a) `(,s8) #f)] [s7 (match '(b) `(,s8) #f)] [s8 (match '( ) `(,s1) #f)]) (s1 l))) (matches? '(a c)) (matches? '(a b b b a c)) (matches? '(z a b b b a c)) </code></pre> <p>Now, what if I had a simple data-structure to represent my NFA, like a list of lists. e.g.</p> <pre><code>'((s4 () () #t) (s3 (c) (s4) #f) ...) </code></pre> <p><b>My question is:</b> How would I turn that list into the former letrec statement? I'm not too good with Macros and my understanding is that I probably shouldn't be using eval. </p> http://stackoverflow.com/questions/1894610/can-i-define-a-global-from-inside-a-procedure-in-scheme 0 Can I define a global from inside a procedure in Scheme? Steve 2009-12-12T20:29:20Z 2009-12-12T21:28:29Z <p>I have a situation where I'd like to do something like...</p> <pre><code>(define (def a b) (store a b) ; store the definition of 'a' somewhere (define-global a b)) ; also define 'a' so that its definition ; is accessible later in the program </code></pre> <p>Is this possible somehow? As far as I know <code>define-global</code> doesn't exist, so <code>define</code> statements inside procedures apply only to the local environment.</p> <p>This is intended for creating a 'def' procedure for an embedded DSL in scheme, so in addition to making the definition I need to store the definition in my own symbol table. Eventually I want to 'intercept' symbol look-ups to apply my own transformation, returning an expression for the symbol look-up instead of actually performing it.</p> <p>I'm using Gambit-C Scheme.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1257021/suitable-functional-language-for-scientific-statistical-computing 21 Suitable functional language for scientific/statistical computing? gappy 2009-08-10T20:27:14Z 2009-12-12T12:07:35Z <p>I use mostly <a href="http://en.wikipedia.org/wiki/R%5F%28programming%5Flanguage%29" rel="nofollow">R</a> and C for statistics-related tasks. Recently I have been dealing with large datasets, typically 1e7-1e8 observations, and 100 features. They seem too big for R too handle, and the package I typically use are also more prone to crashing. I could develop tools directly in C or C++, but this would slow down the development cycle. I am searching on the web for alternatives to R for large-scale analysis, or for R extensions in this direction. I would like to poll the Stack Overflow community for <em>specific</em> suggestions on what to use. Ideally, a good candidate should have stable and multiplatform implementations, a robust user community (or at least a committed and growing small user base), and of course be faster than R (by passing references to functions, compiling, facilitate parallelization of embarassingly parallel jobs).</p> <p>I have been looking at functional languages. <strong><a href="http://en.wikipedia.org/wiki/Lush%5F%28programming%5Flanguage%29" rel="nofollow">Lush</a></strong> (by Bottou and LeCoun) and <strong>Clojure/Incanter</strong> are specifically geared for numerical computation, but seem to have very few users. <strong>Haskell</strong>, <strong>Common Lisp</strong>, <strong>Scheme</strong> have a solid user base, but I am not sure that people use them for numerical work.</p> <p>Apologies if this question seems too generic. I am not asking for philosophical statements regarding the merit of this or that language. I Just would like to know what you use for custom analysis of very large data sets.</p> http://stackoverflow.com/questions/985603/fetch-elements-from-list-in-scheme 0 Fetch elements from List in scheme fireball003 2009-06-12T08:32:44Z 2009-12-11T21:15:59Z <p>Hi, How to go through a list or fetch element from a list in scheme? </p> <p>How can I name each element (like we do for variables in java) in a list?</p> <p>Thanks in advance.</p> <p>I want to compare every point in a list to another point. So, as we do in java or python- </p> <pre><code>for(int i;i&lt;list.size();i++){ if (list[i]&gt; k){ //do something } } </code></pre> <p>How can I do similar thing in scheme?</p> http://stackoverflow.com/questions/1878236/functions-that-produce-lists-of-lists-in-scheme 0 functions that produce lists of lists in scheme Elizabeth 2009-12-10T02:08:34Z 2009-12-11T20:10:06Z <p>Hi, </p> <p>I'm trying to use scheme to write a function <code>f</code> that takes a number <code>n</code> and a function <code>g</code> and returns a list of lists of length <code>n</code>, but according with booleans according to the pattern indicated by <code>g</code>. For example, the function <code>f</code> should take n say 3 and the function <code>g</code> which makes every 3rd item on the list a true. It should return this:</p> <pre><code>(list (list true true false) (list true true false) (list true true false)) </code></pre> <p>I have no idea where to start with this, so any help or tips would be greatly appreciated. THanks!</p> http://stackoverflow.com/questions/1888054/importing-struct-with-plt-scheme 1 Importing struct with plt scheme Eino Gourdin 2009-12-11T13:25:57Z 2009-12-11T19:32:09Z <p>Hi ! I'm struck on a problem with a simple scheme application. In one file (dataloader.ss), I define a struct :</p> <pre><code>(define-struct book-category (id name books)) </code></pre> <p>But I can't use the structure in another file. What I try is, in dataloader.ss, to export the structure with</p> <pre><code>(provide book-category) </code></pre> <p>And in the other file, I import :</p> <pre><code>(require "dataloader.ss"). </code></pre> <p>But a call to one of the struct functions irremediably fails : For example </p> <pre><code>(make-book-category 2 "test" '()) </code></pre> <p>gives me :</p> <blockquote> <p>reference to an identifier before its definition: make-book-category</p> </blockquote> <p>On the other hand, if I redefine the struct in the 2nd file, it tells me : "module: identifier is already imported in: book-category" so, I guess the import works at least partially. But I still can't access the associated functions. Is there something else to do?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/925365/what-is-a-thunk-as-used-in-scheme-or-in-general 4 What is a 'thunk', as used in Scheme or in general? Amit 2009-05-29T10:35:25Z 2009-12-11T11:45:24Z <p>Hi all,</p> <p>I come across the word 'thunk' at a lot of places in code and documentation related to Scheme, and similar territories. I am guessing that it is a generic name for a procedure, which has a single formal argument. Is that correct? If yes, is there more to it? If no, please?</p> <p>For eg. in <a href="http://srfi.schemers.org/srfi-18/srfi-18.html" rel="nofollow">SRFI 18</a>, in the 'Procedures' section.</p> http://stackoverflow.com/questions/1882541/whats-up-with-stdout-in-gambit-c-scheme 0 What's up with stdout in Gambit-C Scheme? Steve 2009-12-10T17:17:44Z 2009-12-10T17:54:55Z <p>What's up with this, how do I capture the output from my Gambit-C program?</p> <pre><code>$ gsi -e "(pp 'hello?)" hello? $ gsi -e "(pp 'hello?)" &gt;asdf hello? $ gsi -e "(pp 'hello?)" 2&gt;asdf hello? $ cat asdf </code></pre> <p>It should have put the output of the program into <code>asdf</code>, but it's empty! Is there a compile-time or run-time option I can set to make it treat stdout like a normal unix program? (Preferably compile-time)</p> http://stackoverflow.com/questions/1675086/finding-if-a-number-is-the-power-of-2-in-scheme 3 Finding if a number is the power of 2 in Scheme Evan Parker 2009-11-04T16:42:03Z 2009-12-10T15:58:28Z <p>I'm fairly new to Scheme and am attempting to learn it on my own from scratch. I'm stuck on the syntax of this problem. I know that if I want to find out if a number is a power of 2, in C for instance, I would simply do:</p> <pre><code>return (x &amp; (x - 1)) == 0; </code></pre> <p>which would return true or false. How would I be able to convert this into a couple simple lines in Scheme?</p> http://stackoverflow.com/questions/161666/sicp-exercise-1-3-request-for-comments 4 SICP Exercise 1.3 request for comments ashitaka 2008-10-02T10:23:31Z 2009-12-10T14:11:49Z <p>I'm trying to learn scheme via SICP. Exercise 1.3 reads as follow: Define a procedure that takes three numbers as arguments and returns the sum of the squares of the two larger numbers. Please comment on how I can improve my solution.</p> <pre><code>(define (big x y) (if (&gt; x y) x y)) (define (p a b c) (cond ((&gt; a b) (+ (square a) (square (big b c)))) (else (+ (square b) (square (big a c)))))) </code></pre> http://stackoverflow.com/questions/1878706/set-not-an-identifier-in-plt-scheme-error 0 "set!: not an identifier in:..." plt scheme error. Victor 2009-12-10T04:53:16Z 2009-12-10T05:23:29Z <p>what's wrong with this code in Dr.Scheme using Pretty Big? i seem to remember doing similar things in the past with no problem.</p> <pre><code>(lambda (x y) (set! (Frame-variables res) (append (Frame-variables res) (list (cons x y))))) </code></pre> <p>which returns the following error:</p> <blockquote> <p><code>set!: not an identifier in: (Frame-variables res)</code></p> </blockquote> <p>if i omit the <code>(set! (Frame-variables res) ... )</code> part it works fine except of course that my list doesn't actually change. so it recognizes the second <code>(Frame-varialbes res)</code> but not the first one? or what's the deal with <code>set!</code> in that context? </p> <p>hopefully you recognize that i have a struct called <code>Frame</code> with a <code>variables</code> field which is a list.</p> http://stackoverflow.com/questions/1869116/scheme-built-in-to-check-list-containment 1 Scheme built-in to check list containment Claudiu 2009-12-08T19:00:21Z 2009-12-09T17:52:58Z <p>In Python I can do "x in list" to see if the list contains x. Is there any equivalent built-in in Scheme to do this?</p> http://stackoverflow.com/questions/1865298/how-might-you-implement-design-by-contract-in-clojure-specifically-or-functional 2 How might you implement design-by-contract in Clojure specifically or functional languages in general? rrc7cz 2009-12-08T07:39:14Z 2009-12-09T16:00:57Z <p>I'd prefer examples to be in a Lisp variant (bonus points for Clojure or Scheme) since that's what I'm most familiar with, but any feedback regarding DBC in functional lanugages would of course be valuable to the greater community.</p> <p>Here's an obvious way:</p> <pre><code>(defn foo [action options] (when-not (#{"go-forward" "go-backward" "turn-right" "turn-left"} action) (throw (IllegalArgumentException. "unknown action"))) (when-not (and (:speed options) (&gt; (:speed options) 0)) (throw (IllegalArgumentException. "invalid speed"))) ; finally we get to the meat of the logic) </code></pre> <p>What I don't like about this implementation is that the contract logic obscures the core functionality; the true purpose of the function is lost in conditional checks. This is the same issue I raised in <a href="http://stackoverflow.com/questions/1809093/how-can-i-place-validating-constraints-on-my-method-input-parameters">this question</a>. In an imperative language like Java, I can use annotations or metadata/attributes embedded in documentation to move the contract out of the method implementation.</p> <p>Has anyone looked at adding contracts to metadata in Clojure? How would higher-order functions be used? What other options are there?</p> http://stackoverflow.com/questions/1870350/what-does-parametrize-do-in-drscheme 3 What does 'parametrize' do in DrScheme? Claudiu 2009-12-08T22:31:54Z 2009-12-09T05:04:54Z <p>I'm trying to make sense of the example code <a href="http://tinyurl.com/yesl7z9" rel="nofollow">here</a> (below Examples). I don't understand that <strong>parametrize</strong> construct. The docs for it are <a href="http://tinyurl.com/ybwqsn9" rel="nofollow">here</a>, but they don't help. What does it do?</p> http://stackoverflow.com/questions/1869763/how-can-lisp-make-me-a-better-c-developer 10 How can Lisp make me a better C# developer? Erik 2009-12-08T20:54:47Z 2009-12-08T23:49:34Z <p>I'm considering learning a Lisp dialect (probably Scheme, since I am constantly hearing how good of a learning language it is) in order to improve my general programming skill.</p> <p>Apart from the fact that learning any new language helps you to be a better programmer in general, how can learning Lisp make me a better C# programmer?</p> http://stackoverflow.com/questions/1864048/what-is-the-smallest-lisp-ish-interpreter-compiler 5 What is the smallest lisp-ish interpreter? Compiler? Steve 2009-12-08T01:37:00Z 2009-12-08T03:45:20Z <p>I'm looking at ways to embed a lisp or scheme in a C program, but I want to do so without growing the program size considerably. It doesn't need to be fast, or support lots of features. (Though macros would be nice.) This is not a math-intensive application.</p> <p>Please list the smallest embeddable interpreter for a lisp-like language you know of. Alternatively, list compilers which generate very small embeddable and self-contained code.</p> http://stackoverflow.com/questions/1854458/breadth-first-binary-tree-traversal-in-scheme 0 Breadth First Binary Tree Traversal in Scheme JR 2009-12-06T05:31:17Z 2009-12-08T02:17:41Z <p>Hello, I am trying to implement a breadth first (level) tree traversal. I'm very close, but I can't figure out how I'm getting duplicates. Any help is much appreciated. Thanks in advance. JR</p> <pre><code>(define (atom? x) (not (pair? x))) ;;Functions to manipulate a binary tree (define (leaf? node) (atom? node)) (define (left node) (cadr node)) (define (right node) (caddr node)) (define (label node) (if (leaf? node) node (car node))) ;; Breadth First using queue (define (breadth node) (q 'enqueue! node) ;; Enqueue tree (output 'enqueue! (label node)) ;; Output root (helper node) (output 'queue-&gt;list) ;; Output elements in queue ) (define (helper node) (if (not(q 'empty?)) ;; If queue is not empty (begin (if(not(leaf? node)) (begin (q 'enqueue! (left node)) ;; left tree to q (output 'enqueue! (label(left node))) ;; Output root of left tree (q 'enqueue! (right node)) ;; Enqueue right tree to q (output 'enqueue! (label(right node))) ;; Output root of right tree )) (helper (q 'dequeue!)) ;; Dequeues 1st element in q ;; and recursively calls helper ) ) ) (define (make-queue) (let ((front '()) (back '())) (lambda (msg . obj) (cond ((eq? msg 'empty?) (null? front)) ((eq? msg 'enqueue!) (if (null? front) (begin (set! front obj) (set! back obj)) (begin (set-cdr! back obj) (set! back obj)))) ((eq? msg 'dequeue!) (begin (let ((val (car front))) (set! front (cdr front)) val))) ((eq? msg 'queue-&gt;list) front))))) (define q (make-queue)) (define output (make-queue)) (define tree '(A (B C D)(E (F G H) I))) --------------------------------------------------------- Welcome to DrScheme, version 4.2.2 [3m]. Language: R5RS; memory limit: 128 megabytes. &gt; (breadth tree) (a b e b e c d f i c d f i g h g h) ;; Should be (a b e c d f i g h) &gt; </code></pre>