From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andy Wingo Newsgroups: gmane.lisp.guile.user Subject: Re: Plotting in Guile Date: Wed, 18 Aug 2010 08:37:15 -0700 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1282145672 3175 80.91.229.12 (18 Aug 2010 15:34:32 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 18 Aug 2010 15:34:32 +0000 (UTC) Cc: guile-user@gnu.org To: Joel James Adamson Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Wed Aug 18 17:34:31 2010 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Olkep-0003BE-HO for guile-user@m.gmane.org; Wed, 18 Aug 2010 17:34:27 +0200 Original-Received: from localhost ([127.0.0.1]:55554 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Olkeo-0000DN-IQ for guile-user@m.gmane.org; Wed, 18 Aug 2010 11:34:26 -0400 Original-Received: from [140.186.70.92] (port=44207 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Olkeb-000099-VS for guile-user@gnu.org; Wed, 18 Aug 2010 11:34:15 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OlkeY-00055z-9V for guile-user@gnu.org; Wed, 18 Aug 2010 11:34:12 -0400 Original-Received: from a-pb-sasl-quonix.pobox.com ([208.72.237.25]:58371 helo=sasl.smtp.pobox.com) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OlkeY-00055r-7l for guile-user@gnu.org; Wed, 18 Aug 2010 11:34:10 -0400 Original-Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id C1F77CEDB1; Wed, 18 Aug 2010 11:34:09 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=oyrlx6jUQOoHs6fyiwVw7caeDB0=; b=dZhYmt JdfUlKp9BqDcT9JGEGeoqp3O1cA88wNsQfwApnM+Iq4KO0+BG0wAFhVgf9e7lYMo aqZUM7HYN+G0ffsyO1lZUIinpNP0E2lJpvHBLIUFSDBBtZcbdiMN+us9q/hsoMOU TR7SQg7sXxoqkUdDHrgpMVvt+BQE7eKwzKzNg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=jTRTZdhzPgLj3cUoFQCRhipFvl2P8eev n2NDsNCNLIQnZUYmVlynbD8iV7kiB4O7fGybWyciABvoZiEVICxOq5R5xC6Q5WJw AQNElSpF/+55jYDrLkf9iLul2m4YG62DUsN4wM35OhIVUR5JhNBIEfiqo57+SO+I FJZGPUcRuZg= Original-Received: from a-pb-sasl-quonix. (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id AC21CCEDAE; Wed, 18 Aug 2010 11:34:08 -0400 (EDT) Original-Received: from unquote.localdomain (unknown [75.16.62.19]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTPSA id 21F3ECEDAD; Wed, 18 Aug 2010 11:34:06 -0400 (EDT) In-Reply-To: (Joel James Adamson's message of "Wed, 28 Jul 2010 11:21:40 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) X-Pobox-Relay-ID: 0AE701B6-AADE-11DF-B8E5-9056EE7EF46B-02397024!a-pb-sasl-quonix.pobox.com X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:8077 Archived-At: Hi Joel, On Wed 28 Jul 2010 08:21, Joel James Adamson writes: > I am using Guile to iterate equations and produce trajectories from > those iterations. My current strategy is to redirect the stdout to a > file and then use GNUPLOT to plot the trajectories as parametric > plots. However, I would like to contain everything within one program, > to keep Makefiles simple and (ideally) only deal with one programming > language for the project. > > Any suggestions on how to accomplish this? Plotutils is going to be better, but there is also the possibility of generating the plots directly, via cairo. http://wingolog.org/software/guile-charting/ Grab it from git, if you want it to work with the 1.9 series. Andy -- http://wingolog.org/