help-octave
[Top][All Lists]
Advanced

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

Re: compile error please help more help


From: Carlo de Falco
Subject: Re: compile error please help more help
Date: Sun, 14 Dec 2008 13:56:50 +0000


On 14/dic/08, at 13:26, Doug Stewart wrote:

here it is

address@hidden:~$ gnuplot --version
gnuplot 4.2 patchlevel 2
address@hidden:~$


interesting !!!!
doug



I think it could be a problem with your PCRE installation.
The relevant code in __gnuplot_version__ is

------------------------------------------------------
output = "gnuplot 4.2 patchlevel 2";
 pattern = "^[^\\s]*\\s*([0-9]+\\.[0-9]+)\\s*[^\\s]*\\s*([^\\s]*)";
    [d1, d2, d3, d4, matches] = regexp (output, pattern);
if (iscell (matches) && numel (matches) > 0 && iscellstr (matches{1}))
      if (numel (matches{1}) == 2)
        __version__ = sprintf ("%s.%s", matches{1}{:});
      else
        __version__ = matches{1}{1};
      endif
 endif  
--------------------------------------------------------

which for me gives:

------------------------------------------------------
> matches
matches =

{
  [1,1] =

  {
    [1,1] = 4.2
    [1,2] = 2
  }

}

>> __version__
__version__ = 4.2.2
------------------------------------------------------

what does it return on your system?
c.







reply via email to

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