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 _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. [email protected] http://lists.gnu.org/mailman/listinfo/emacs-orgmode
