help-octave
[Top][All Lists]
Advanced

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

Re: How to use "set xtics 0,5,10 in octave 3.2.4 ?


From: Ben Abbott
Subject: Re: How to use "set xtics 0,5,10 in octave 3.2.4 ?
Date: Thu, 28 Apr 2011 18:24:03 -0400

On Apr 28, 2011, at 3:20 PM, LifeTime wrote:

> Hi 
> 
> I am trying to use command 
> 
> set xtics 0,5,10 
> 
> in my octave program. Above command is given in gnuplot 4.4 manual on page 
> 112. It shows error : 
> 
> error: invalid conversion from string to real N-d array 
> error: set: expecting graphics handle as first argument 
> 
> I have also tried gset formly but found on the forum that it is obsolete. 
> 
> How to use the command correctly as given above ? 
> 
> I am using windows xp. 
> 
>  __gnuplot_version__ 
> ans = 4.4.0octave-mingw32 
> 
> Thanks.

The syntax you're using is no longer supported. The new method is ...

        set (gca, "xtick", [0 5 10])

Ben



reply via email to

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