Search found 20 matches

by vityok
Wed Oct 08, 2008 6:28 am
Forum: Common Lisp
Topic: Graphics in SBCL
Replies: 4
Views: 12802

Re: Graphics in SBCL

I would recommend to pay a little bit of attention to ADW-CHARTING and VECTO packages. The first is for plotting various charts and the second is for drawing images using vector operations.
by vityok
Tue Sep 16, 2008 3:20 am
Forum: Common Lisp
Topic: Poll: Which Lisp implementations do you use?
Replies: 32
Views: 97196

Re: Poll: Which Lisp implementations do you use?

I use SBCL on Linux/FreeBSD and CLISP on Windows.
by vityok
Wed Aug 06, 2008 12:59 am
Forum: Common Lisp
Topic: How to embed SBCL in a C++ app?
Replies: 5
Views: 15304

Re: How to embed SBCL in a C++ app?

Especially that the ECL had a new release recently.
by vityok
Thu Jul 31, 2008 12:56 am
Forum: Common Lisp
Topic: SBCL 1.0.19 released
Replies: 6
Views: 18466

Re: SBCL 1.0.19 released

The http://www.sbcl.org still considers 1.0.18 the latest release!
by vityok
Wed Jul 23, 2008 4:28 am
Forum: Common Lisp
Topic: Parsing large real numbers
Replies: 4
Views: 11060

Re: Parsing large real numbers

Thank you all for your help.

The approach with modifying default float format does work for me.

Thanks
by vityok
Tue Jul 22, 2008 11:45 pm
Forum: Common Lisp
Topic: Parsing large real numbers
Replies: 4
Views: 11060

Parsing large real numbers

Hello, What is the proper way to read (parse) real numbers in Common Lisp? The problem is, that I have to read relatively large real numbers, and both SBCL and CLISP fail: [4]> (- (read-from-string "1169991858.90605") 1169991859.32605) 0.0 [5]> (- (read-from-string "1169991858.90605&q...
by vityok
Wed Jul 16, 2008 5:22 am
Forum: Common Lisp
Topic: Survey of currently-supported Common Lisp implementations
Replies: 2
Views: 11108

Re: Survey of currently-supported Common Lisp implementations

Some time before I've used the data from the survey and put a reference in the Коммон Лісп article on Ukrainian Wikipedia about Common Lisp.

Thanks for your work!
by vityok
Tue Jul 15, 2008 5:34 am
Forum: Common Lisp
Topic: Passing values by reference
Replies: 12
Views: 31814

Re: Passing values by reference

Thanks everybody for helping me. It seems that the issue becomes more clear to me. As far as I understood, the vectors I pass to functions are not copied, instead, references are passed. I have also conducted a very simple test: CL-USER> (setq a (make-sequence '(vector float) 3 :initial-element 0)) ...
by vityok
Mon Jul 14, 2008 5:47 am
Forum: Common Lisp
Topic: Passing values by reference
Replies: 12
Views: 31814

Re: Passing values by reference

But I am not sure if this has anything to do with your question. Actually, I am trying to parse CSV files stored in GZIP archives, calculate simple statistics and output results. The calculations are simple (like computing mean value over some samples) and, generally speaking, could be made in cons...
by vityok
Mon Jul 14, 2008 4:30 am
Forum: Common Lisp
Topic: Passing values by reference
Replies: 12
Views: 31814

Passing values by reference

Hello, I would like to ask whether it is possible to pass parameters to functions by reference ? As far as I understand, function call parameters (even vectors, sequences, etc.) are passed by value (the form is evaluated, yielding the vector, sequence, etc. and the value is passed as a function para...