help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

plotting


From: Matt Funk
Subject: plotting
Date: Fri, 19 Nov 2004 22:18:12 +0000
User-agent: KMail/1.6.2

Hi, 

can somebody tell me why :

graphoutput 
=sprintf("octave_output/graph_quantity%g__point_x%g_y%g.eps",quantity,Vm_Points(1,k),Vm_Points(2,k));
a = sprintf("gset output \"%s\"", graphoutput);
eval(a);                                                                
eval('gset term postscript eps');
eval('gset size 1.0,1.0');
eval('gset key top left')
hold on;                
grid
titel = sprintf("Value of Vm at point x=%g,
y=%g\n",Vm_Points(1,k),Vm_Points(2,k));
title(titel);   
xlabel("time [ms]");
ylabel("Transmembrane voltage [mV]");           
plot(Dts,simple_MaxError(:,1),';1;',Dts,simple_MaxError(:,2),';2;');
hold off;               
closeplot;


only prints the first argument to file (namely simple_MaxError(:,1) ) ?


thanks
mat

On Friday 19 November 2004 07:55, Miroslaw Kwasniak wrote:
> On Fri, Nov 19, 2004 at 08:48:31AM +0100, Miroslaw Kwasniak wrote:
> > On Thu, Nov 18, 2004 at 05:33:13PM +0000, Matt Funk wrote:
> > > so, any fixes?
> >
> > Save in .mat format :(
>
> Sorry for first answer, it is (or may be) stupid. I'm before first coffe ;)
>
> You can use octave binary format: save -binary ...
>
> Mirek
>
>
>
> -------------------------------------------------------------
> Octave is freely available under the terms of the GNU GPL.
>
> Octave's home on the web:  http://www.octave.org
> How to fund new projects:  http://www.octave.org/funding.html
> Subscription information:  http://www.octave.org/archive.html
> -------------------------------------------------------------



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

[Prev in Thread] Current Thread [Next in Thread]