Tagged Questions
0
votes
2answers
18 views
Passing multiple variables (image->color-list) as a procedure argument RACKET
I am trying to create a procedure which will accept two colour-lists. Because this procedure is within another procedures(local). I need to convert image->color-list as I am passing the arguments. I ...
1
vote
1answer
32 views
Simple Nested Evaluations in DrRacket
so I'm working on some practice problems for my programming languages class, and one of the assignments is to create a script "MyEval" which allows you to do simple nested addition and multiplication. ...
1
vote
2answers
28 views
Regular addition or multiplication operators in scheme
How can I write a scheme program that makes regular sums. In scheme 2+2 is written (+ 2 2). The program I have to make should make (2 + 2) possible is scheme.
-2
votes
0answers
22 views
Scheme : Check if there are more than 2 sublist in a row Altlis and altlis2 in
I'm supposed to define Altlis and I believe the altlis2 should check that there are no more than two sublist or no more than two subatoms in a row. If it is then it returns false If it has atom, list ...
3
votes
2answers
39 views
DrRacket EOPL Scheme output
I am working through the EOPL Scheme exercises using DrRacket in Windows 7. When I switch from #lang racket to #lang eopl, the output from the definitions pane no longer shows up in the interaction ...
1
vote
2answers
49 views
Binary tree inorder traversal Racket
I am trying to write the algorithm for inorder traversal for a binary tree using RACKET/DR. RACKET
(define (print-records node number)
(cond
[(not (empty? node-left))(print-records ...
1
vote
2answers
35 views
Accessing a variable field within a node
Hi I am new to Racket using it for a binary tree structure.
Using the following structure
(define-struct human(age hight))
I have created the following object/variable/human
(define ...
1
vote
3answers
47 views
Scheme's “expected a procedure that can be applied to arguments”
I use DrRacket. I have problem with this code:
(define (qweqwe n) (
(cond
[(< n 10) #t]
[(>= (lastnum n) ...
1
vote
3answers
48 views
Intertwine two lists
How do I merge two lists that are equal length, creating a list of intertwined elements?
For example, lists 2, 4, 6 and 1, 3, 5 should produce 2, 1, 4, 3, 6, 5 in racket.
I am having a difficult ...
0
votes
1answer
53 views
Selecting items from List-box in Scheme
There is a list-box which has three columns. I'm trying to get all the row of a index (item) which are selected.
The problem is that i can't get the whole row. The following function returns just the ...
0
votes
1answer
35 views
decomposing a list of points in drRacket
I have a list of points with the form :
((1.10) (2.980) (3.567) (4.0)...(1000.87 ))
And, to be able to use them in the function plot, I would like to extract the two sublist with the x and the y ...
3
votes
2answers
44 views
Modification of the basic if expression in Scheme. Why does it go into an infinite loop?
In Scheme, I modified the basic 'if' command as:
(define (modified-if predicate then-clause else-clause)
(if predicate
then-clause
else-clause))
And then I defined a simple factorial ...
1
vote
1answer
24 views
Compatibility issue with drRacket: “require” and “frame”
I wonder if my drRacket has a problem :
I see example on the internet of programs but when I put them in Dr racket, it considers them as an error.
It first append when I write (require racket/base) ...
1
vote
2answers
53 views
Get the selected text-field% in a Racket GUI
I have an application that uses the The Racket Graphical Interface Toolkit to create a GUI.
I also have a frame with several fields, that is created with the code below:
#lang racket
(require ...
2
votes
2answers
39 views
creating a procedure which takes list as an argument
I am a newbie in scheme and I am trying to write a procedure which always finds a list's tail's first element. This is important in recursive calls.
Here is my procedure :
(define second (lambda ...
1
vote
1answer
34 views
Scheme (DrRacket) - cond statement does not work with recursion
I am learning Scheme using DrRacket R5RS. I thought that I was nailing down the concepts, but I cannot get this simple recursion exercise to work. I think that it is a bug in DrRacket, but I'm not ...
3
votes
2answers
52 views
Drawing onto canvas% element
I have a problem while trying to draw onto a canvas GUI element.
I create a frame, a canvas and try to draw on the dc context of the canvas with the draw-line method, but nothing happens. The frame ...
1
vote
1answer
59 views
How do I create and save a Scheme program with .scm file extension using DrRacket?
All I am able to make in DrRacket is racket document files, but I need those files to have a Scheme file extension or more specifically .scm
How would I be able to do this?
1
vote
1answer
43 views
Number in Sequence that a pair falls in
I want to find what number in the sequence a pair falls in. I am trying to write a procedure that verifies that f(1, n) = 2n - 2 and f(m+1, n+1) = 2f(m, n). It works when I call (number 99, 100), ...
2
votes
2answers
67 views
scheme equivalent to ruby debug 'p' statement
I'm trying to debug some scheme code. It would be helpful if I could print the contents of a variable or binding out.
Is there an equivalent to the 'p' statement of Ruby in Scheme.
In particular, ...
1
vote
1answer
31 views
Scheme: Number of occurrences in a list
I'm trying to write a Scheme function called "p" with one parameter X which is a list of letters. the function should return true if the number of a's is one less than the number of b's. This is what ...
1
vote
2answers
59 views
removing list with a list
I understand how to remove elements when there are list and a variable, but is there a way to remove elements from a list using another list? EXAMPLE: (list 1 2 3 4 5)(list 1 2 3) yields (list 4 5)
2
votes
1answer
61 views
Extracting only numbers within a list
Is there a way to extract only numbers within a list?
I'm using the beginner language package so I cannot use filter which is a bummer.
(list a 1 2 b d 3 5) => 1 2 3 5 etc
I want to use this as a ...
0
votes
1answer
140 views
newline in scheme (racket)
it is possible to have a new line when you write with "display" like
(display "exa \n mple")
But, the problem is that there is no any code to have a new line in strings? Like:
"exa \n mple"
...
2
votes
2answers
61 views
Using lambda racket
Design a function that consumes a [Listof Number] and checks if 0 is in the list.
I want to figure this out using lambda. I've been reading the book, and this is what I've came up with so far. I ...
1
vote
1answer
71 views
Partitioning a list on Scheme
How would i go about making a partition function that would take a number and a list to partition the list into smaller lists of lists whose size is given by the number
so that
Partition 3 '(a b c d ...
2
votes
1answer
59 views
Why return empty and not the list itself?
Chapter 4, HtDP.
Note: I've seen this in other questions as well.
Is it for a clarity reason or an algorithmic reason, that I am unaware of, that the base case returns empty instead of the list ...
1
vote
1answer
67 views
Why won't racket obey my all setting in string-replace
I found the Racket documentation for the string-replace function to be vastly disparate from how the racket read-eval-print loop actually works. The docs say that you can put a keyword after ...
0
votes
2answers
112 views
How can I improve this auxilary function in Racket?
I'm working in HtDP, Chapter 4 using the BSL language.
The problem I was working on is:
Exercise 136: If you run main, press the space bar (fire a shot), and
wait for a good amount of time, the ...
0
votes
2answers
74 views
scheme function checking constants/vowels
How to create a function in Dr. Racket consumes a string str and produces true if str has at least a vowel and false if str has no vowels.
The vowels are the following set of characters: A, a, E, e, ...
4
votes
3answers
85 views
Scheme Scoping (define and let)
So I know that in Scheme define is for dynamic scoping and let for static scoping, yet the following thing confuses me:
If I have
(let ((x 0))
(define f (lambda () x))
(display (f))
(let ((x ...
0
votes
0answers
58 views
DrRacket error while debugging scheme
During playing with scheme in drracket (5.3.2 on win7), quite big problem occured. After few days I started to use debuggin tool, it was splendid while finding errors, but it doesn't work anymore on ...
1
vote
1answer
198 views
Running code from SICP section 3.5.4 with DrRacket
I'm having trouble running an example code from SICP (Structure and Interpretation of Computer Programs) Section 3.5.4 (Streams and Delayed Evaluation); the SICP section can be found here: ...
0
votes
4answers
93 views
True / false evaluation doesn't work as expected in Scheme
I'm trying to compare two booleans :
(if (equal? #f (string->number "123b"))
"not a number"
"indeed a number")
When I run this in the command line of DrRacket I get "not a number" ...
-1
votes
2answers
120 views
implement length in r5rs scheme (drracket) [closed]
Is it possible to implement the R5RS scheme function "length" using the car and cdr family of functions?
If so could someone post the implementation?
Thanks,
1
vote
2answers
58 views
How to use an image in R5RS
I'm looking for a way to import a .jpg file into R5RS. I would like to use it as background for a game that I'm making.
Thanks!
1
vote
2answers
1k views
Scheme getting last element in list
Im trying to write a simple scheme function that returns the last element of a list. My function looks like it should work, but I managed to fail on something:
(define (last_element l)(
(cond ...
-2
votes
1answer
72 views
the sin function recursively [closed]
I want to solve this problem in need scheme of calculating the sin function recursively without using the factorial and powers!
must be in the same function call no other! Thank you!
1
vote
1answer
183 views
Perfect number recursion in SCHEME. (beginner)
Hey so I am creating a function (divides n), which is supposed to calculate the number of divisors in a number n with the help of a modulo function and a function that acts as a counter going down ...
2
votes
1answer
440 views
Scheme Binary Search Tree Error (R5RS)
I am completely new to Scheme and functional languages in general. I am trying to create a binary search tree. The format of a node is a list of three elements, the first being the value at the ...
2
votes
1answer
183 views
SCHEME recursion perfect number (beginner, hopefully easy fix)
having an issue with my perfect number function. The objective of the code is to determine if the number is a perfect number, meaning it is equal to the sum of its divisors. Ex:6. Im having trouble ...
3
votes
2answers
126 views
SICP exercise 1.5 and 1.6
In addition to question What's the explanation for Exercise 1.6 in SICP?.
So Dr. Racket (R5RS) evaluates sqrt-iter function with "if" in finite time, clearly showing normal order evaluation. But ...
0
votes
3answers
238 views
Scheme recursion function
Hey i've been stuck on the following problem and cant seem to come up with the correct function.
Write a recursive function that, given a positive integer k, computes the product k:
...
3
votes
2answers
201 views
Scheme code cond error in Wescheme
Although the following code works perfectly well in DrRacket environment, it generates the following error in WeScheme:
Inside a cond branch, I expect to see a question and an answer, but I see more ...
1
vote
2answers
108 views
Accepting words from the command prompt and converting to list of strings
I want to write a code in DrRacket that accepts a multiple words from the command prompt and does converts them to a list of string. For eg. if I enter hello how do you do in the prompt, it should ...
2
votes
1answer
123 views
convert one big quote to string/list in scheme
i have this assignment to do, where i need to parse a wrong written recursive procedure, and fix it.
for example:
This:
(let ((fib (lambda (n)
(cond ((= n 0) 1)
...
3
votes
1answer
238 views
Elegant code for binary addition?
I just wrote the function add-registers for binary addition of two n-bit registers in Racket (using bit-add function as a helper):
(define (bit-add x y c)
(values (bitwise-xor x y c) (bitwise-ior ...
1
vote
1answer
79 views
Scheme - What is wrong with my attempt to extend this declaration?
This is a homework question.
Question
My attempt (the whole file): http://pastebin.com/TS6mByEj
If you search let var = exp1 in body, that's the function I need to extend according to the ...
1
vote
1answer
559 views
DrRacket wont start
I'm trying to begin writing scheme in DrRacket. I had DrRacket working for a short period of time, then I got up to go get coffee, came back and now it won't start. Instead of bringing up the ...
2
votes
2answers
705 views
random function in DrRacket
I am currently using DrRacket on Mac OS X and choose the language "R5RS", but when I enter
(random 100)
I get the error message:
reference to undefined identifier: random
What's the problem ...
