Hi
I am using multiplot mode to plot two surfaces on a single plot. The problem
I am having
is that each plot uses a different origin and ranges. I would like the
second plot to use
the ranges and origin of the first plot which are computed by autoscale. How
can I do this?
--
View this message in context: http://www.nabble.com/Using-multiplot-with-splot-tp25869448p25869448.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
From: Thomas S. <t.s...@fz...> - 2009-10-13 13:15:15
use
set xrange [] writeback
set yrange [] writeback
set zrange [] writeback
and
set xrange restore
set yrange restore
set zrange restore
see:
http://www.gnuplot.info/docs/node294.html
WesM wrote:
>
> Hi
>
> I am using multiplot mode to plot two surfaces on a single plot. The
> problem I am having
> is that each plot uses a different origin and ranges. I would like the
> second plot to use
> the ranges and origin of the first plot which are computed by autoscale.
> How can I do this?
>
--
View this message in context: http://www.nabble.com/Using-multiplot-with-splot-tp25869448p25872694.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
Thanks again Thomas
That works except that when I try to rotate the image using my mouse the
first plot disappears. I have set multiplot mode.
Thomas Sefzick wrote:
>
> use
> set xrange [] writeback
> set yrange [] writeback
> set zrange [] writeback
> and
> set xrange restore
> set yrange restore
> set zrange restore
>
> see:
> http://www.gnuplot.info/docs/node294.html
>
>
> WesM wrote:
>>
>> Hi
>>
>> I am using multiplot mode to plot two surfaces on a single plot. The
>> problem I am having
>> is that each plot uses a different origin and ranges. I would like the
>> second plot to use
>> the ranges and origin of the first plot which are computed by autoscale.
>> How can I do this?
>>
>
>
--
View this message in context: http://www.nabble.com/Using-multiplot-with-splot-tp25869448p25879519.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
From: Thomas S. <t.s...@fz...> - 2009-10-13 20:16:13
then you should follow the suggestion of "Hans-Bernhard Bröker-2":
> splot 'data1', 'data2'
and not use 'multiplot' mode.
WesM wrote:
>
> Thanks again Thomas
>
> That works except that when I try to rotate the image using my mouse the
> first plot disappears. I have set multiplot mode.
>
>
> Thomas Sefzick wrote:
>>
>> use
>> set xrange [] writeback
>> set yrange [] writeback
>> set zrange [] writeback
>> and
>> set xrange restore
>> set yrange restore
>> set zrange restore
>>
>> see:
>> http://www.gnuplot.info/docs/node294.html
>>
>>
>> WesM wrote:
>>>
>>> Hi
>>>
>>> I am using multiplot mode to plot two surfaces on a single plot. The
>>> problem I am having
>>> is that each plot uses a different origin and ranges. I would like the
>>> second plot to use
>>> the ranges and origin of the first plot which are computed by autoscale.
>>> How can I do this?
>>>
>>
>>
>
>
--
View this message in context: http://www.nabble.com/Using-multiplot-with-splot-tp25869448p25880025.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
From: Hans-Bernhard B. <HBB...@t-...> - 2009-10-13 18:49:48
WesM wrote:
> Hi
>
> I am using multiplot mode to plot two surfaces on a single plot.
That's usually not the right approach. You can just plot two surfaces
in one plot:
splot 'data1', 'data2'
Excellent! Thanks Hans
WesM wrote:
>
> Hi
>
> I am using multiplot mode to plot two surfaces on a single plot. The
> problem I am having
> is that each plot uses a different origin and ranges. I would like the
> second plot to use
> the ranges and origin of the first plot which are computed by autoscale.
> How can I do this?
>
--
View this message in context: http://www.nabble.com/Using-multiplot-with-splot-tp25869448p25881133.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.