From mboxrd@z Thu Jan 1 00:00:00 1970 From: RC Subject: Re: [Babel] Output of multiple variables from octave source Date: Thu, 30 Dec 2010 21:02:36 +0000 (UTC) Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=60601 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PYPe8-0003dW-2O for emacs-orgmode@gnu.org; Thu, 30 Dec 2010 16:02:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PYPe7-00016v-2Q for emacs-orgmode@gnu.org; Thu, 30 Dec 2010 16:02:51 -0500 Received: from lo.gmane.org ([80.91.229.12]:44144) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PYPe6-00016p-Sb for emacs-orgmode@gnu.org; Thu, 30 Dec 2010 16:02:51 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PYPe3-0007Fe-GE for emacs-orgmode@gnu.org; Thu, 30 Dec 2010 22:02:47 +0100 Received: from c-98-230-63-85.hsd1.fl.comcast.net ([98.230.63.85]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 30 Dec 2010 22:02:47 +0100 Received: from recif by c-98-230-63-85.hsd1.fl.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 30 Dec 2010 22:02:47 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, I found the following workaround for what I was trying to do: #+srcname: test.m #+begin_src octave clear variables x=5.2; y=3*x; [sprintf('x=%.1f\n',x),... sprintf('y=%.1f',y)] #+end_src #+results: test.m | x=5.2 | | y=15.6 | RC