[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Segmentation fault when compiling octave
From: |
Ben Abbott |
Subject: |
Re: Segmentation fault when compiling octave |
Date: |
Wed, 10 Oct 2012 12:42:17 -0400 |
On Oct 10, 2012, at 11:59 AM, Feuerbacher, Alan wrote:
> Jordi wrote:
>
>>> However, it appears that the octave version WITH opengl does not
>>> actually use opengl (really Mesa), because even when I invoke it
>>> ("graphics_toolkit fltk"), plots look exactly the same as when
>>> invoking gnuplot.
>>
>> Are you sure? The chosen backend only affects new plot windows. The
>> difference between gnuplot and fltk is most dramatic for 3d plots.
>> Does "sombrero; shading interp" still look the same?
>
> Putting two plot windows side by side, they look identical to me.
>
> Alan
They should look quite different.
Try the commands below. Do you get the same result?
close all
graphics_toolkit gnuplot
figure (1)
graphics_toolkit fltk
figure (2)
get (1:2, '__graphics_toolkit__')
ans =
{
[1,1] = gnuplot
[2,1] = fltk
}
Ben