Readers,
Is it possible to export the grid data generated by the pm3d function?
There are parts of the surface plot that I want to use for other
plots.
Yours,
gn...@co...
gnuplot42
mandriva2009
From: Thomas S. <t.s...@fz...> - 2010-08-03 14:56:37
have a look at the 'set table' command.
set table 'filename'
splot ....
unset table
ther wrote:
>
> Readers,
>
> Is it possible to export the grid data generated by the pm3d function?
> There are parts of the surface plot that I want to use for other
> plots.
>
> Yours,
>
> gn...@co...
> gnuplot42
> mandriva2009
>
> ------------------------------------------------------------------------------
> The Palm PDK Hot Apps Program offers developers who use the
> Plug-In Development Kit to bring their C/C++ apps to Palm for a share
> of $1 Million in cash or HP Products. Visit us here for more details:
> http://p.sf.net/sfu/dev2dev-palm
> _______________________________________________
> gnuplot-info mailing list
> gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>
>
--
View this message in context: http://old.nabble.com/pm3d-data-export-tp29333621p29336399.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
From: Adrian H. <adr...@es...> - 2010-08-04 14:33:23
Is there a way to make gnuplot only show a limited range of data?
i.e. I want the xrange to be kept the same (for example for 0 to 3.5),
but only show data up to x=3?
Thanks
Adrian
From: Junghun S. <jh...@ef...> - 2010-08-04 15:17:52
Any number divided by zero is not plotted.
for functions:
plot (x<=3.5?x:1/0)
for data:
plot "data" u 1:($1<=3.5?$2:$2/0) w lp
(with "data" file like
1 1
2 2
3 3
3.5 3.5
4 4
5 5
)
Maybe there's a better way...
On Wed, Aug 4, 2010 at 11:33 PM, Adrian Hill <adr...@es...> wrote:
> Is there a way to make gnuplot only show a limited range of data?
> i.e. I want the xrange to be kept the same (for example for 0 to 3.5),
> but only show data up to x=3?
>
> Thanks
>
> Adrian
>
>
> ------------------------------------------------------------------------------
> The Palm PDK Hot Apps Program offers developers who use the
> Plug-In Development Kit to bring their C/C++ apps to Palm for a share
> of $1 Million in cash or HP Products. Visit us here for more details:
> http://p.sf.net/sfu/dev2dev-palm
> _______________________________________________
> gnuplot-info mailing list
> gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>