2
votes
4answers
56 views
More explanation on Lexical Binding in Closures?
There are many SO posts related to this, but I am asking this again with a different purpose
I am trying to understand why closures are important and useful. One of things that I've read in other SO …
0
votes
4answers
73 views
lisp-style style `let` syntax in Python list-comprehensions
Consider the following code:
>>> colprint([
(name, versions[name][0].summary or '')
for name in sorted(versions.keys())
])
What this code does is to print the elements …
1
vote
1answer
65 views
Elephant database
hi,
I am a new user to elephant can you please advice me how to start my work , actually a little source code will be helpfull.
0
votes
2answers
44 views
Mystified by end-of-file condition in common lisp
cann't read text file.
READ: input stream #1=# has reached its end
[Condition of type SYSTEM::SIMPLE-END-OF-FILE]
what means is "has reached its end."
7
votes
1answer
127 views
Debugging what this LISP Virus is doing
My firm has been hit by an AutoCAD virus that is deleting and replacing our acaddoc.lsp with the routine below.
I'm an architect and not exactly sure what this is doing by the repetitive "find" and …
1
vote
8answers
201 views
How do I write all-but-one function in Scheme/LISP?
Can you guys think of the shortest and the most idiomatic solution to all-but-one function?
;; all-but-one
;; checks if all but one element in a list holds a certain property
;; (all-but-one even? …
2
votes
2answers
82 views
Common Lisp: Attach x recursively to list
I'm trying to add, say, x to every element of a list.
For example:
(queue 3 '(1 2 3))
would give
((3 1) (3 2) (3 3))
The code below apparently does not do what I want.
Any hints please?
(defun …
1
vote
1answer
48 views
How can I write a function in CLisp and call it in C?
Thanks for answering.
3
votes
2answers
67 views
Elisp function returning mark instead of the right value
I'm writing a routine to test to see if point is at the practical end of line.
(defun end-of-line-p ()
"T if there is only \w* between point and end of line"
(interactive)
(save-excursion
…
21
votes
15answers
2k views
Suitable functional language for scientific/statistical computing?
I use mostly R 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 …
1
vote
2answers
81 views
Another Lisp function refinement
I've completed the Graham's exercise Chapter 5.8,and my code is:
(defun max-min (vec &key (start 0) (end (length vec)))
(cond
((eql start (1- end)) (values (elt vec start) (elt vec (1- …
2
votes
4answers
230 views
Compiling to idiomatic C
Are there any compilers out there for function or lisp-ish languages that compile to idiomatic C? Most compilers out there seem to provide something resembling a machine language composed of C …
4
votes
1answer
118 views
Using ido.el to find files in a git repository
I'm currently using textmate.el from @defunkt to emulate functionality of Textmate in Emacs.
Its equivalent of command-t to find a file in a project uses a git repository as your project (as Emacs …
33
votes
40answers
4k views
Why isn’t LISP more widely used?
I've heard a lot of people espouse the capabilities of LISP and its omnipotent macros. If LISP is such a great language, why isn't it being adopted more? What problems is LISP facing that is holding …
7
votes
6answers
287 views
How Functional language are different from the language implementation point of view.
There is the whole new paradigm of "functional programming", which needs a total change of thought patterns compared to procedural programming. It uses higher order functions, purity, monads, etc., …
