help-octave
[Top][All Lists]
Advanced

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

Re: Lost of gset statement


From: Sean O'Rourke
Subject: Re: Lost of gset statement
Date: Wed, 14 Feb 2007 05:12:58 -0800
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.93 (darwin)

Matthias Brennwald <address@hidden> writes:
> as I understand it, the developers are trying to make Octave less  
> dependent on gnuplot and more compatible with Matlab. This is  
> propably the reason why the gset command is not supported
> anymore.  

This is correct, and it can be a pain.  I've had the following
lines in $HOME/.octaverc for awhile, which appear to fix the
problem:

    function gset(varargin); __gnuplot_set__(varargin{:}); end
    mark_as_command("gset");
    function gshow(varargin); __gnuplot_show__(varargin{:}); end
    mark_as_command("gshow");
    function graw(arg); __gnuplot_raw__(arg); end
    mark_as_rawcommand("graw");

Sean


reply via email to

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