Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.graphics.apps.gnuplot > #3000

Re: How to pm3d plot a kind of randomized data set

Newsgroups comp.graphics.apps.gnuplot
Date 2015-07-27 03:18 -0700
References <418775fc-6ff0-4a3b-b6b1-ba10e1d99264@googlegroups.com>
Message-ID <5702d3dc-4c74-49a3-9c75-5f6d5e27e59a@googlegroups.com> (permalink)
Subject Re: How to pm3d plot a kind of randomized data set
From "Phil B." <philippbasler@googlemail.com>

Show all headers | View raw


I have a relating question, so I'm reviving my own thread.

The Data file 3dRnd.dat is given in
x1 y1 z1

x2 y2 z2

x3 y3 z3

....

So there is an empty line between each data points.

I'm plotting it now with Karl's Suggestion
set dgrid3d
set palette rgbformulae 22,13,-31
set view map
set nokey
splot "./DATA/3dRnd.dat" us 1:2:($3<1e300 ? $3 : 1/0) w pm3d


Now I want to add the Minimum (of the z value) as a special marked area in this plot. 
I already found the stats Command , given by
stats ./3dRnd.dat' using 3 prefix A

I can also plot this Minimum area with the command
splot  './DATA/3dRnd.dat' us ($3==A_min? $1 : 1/0) : ($3 == A_min ? $2 : 1/0) : ($3==A_min ? $3 : 1/0) w pm3d

how can I make a palette that especially uses some flashy colour (like purple)  if $3==A_min and in the other cases it uses the rgbformulae 22,13,-31 ? 

Thanks for your advice.

Back to comp.graphics.apps.gnuplot | Previous | NextPrevious in thread | Find similar


Thread

How to pm3d plot a kind of randomized data set philippbasler@googlemail.com - 2015-07-14 08:02 -0700
  Re: How to pm3d plot a kind of randomized data set Karl Ratzsch <mail.kfr@gmx.net> - 2015-07-14 17:25 +0200
  Re: How to pm3d plot a kind of randomized data set philippbasler@googlemail.com - 2015-07-14 08:37 -0700
  Re: How to pm3d plot a kind of randomized data set philippbasler@googlemail.com - 2015-07-14 08:41 -0700
    Re: How to pm3d plot a kind of randomized data set Karl Ratzsch <mail.kfr@gmx.net> - 2015-07-14 18:10 +0200
  Re: How to pm3d plot a kind of randomized data set "Philipp B." <philippbasler@googlemail.com> - 2015-07-14 09:13 -0700
    Re: How to pm3d plot a kind of randomized data set Karl-Friedrich Ratzsch <mail.kfr@gmx.net> - 2015-07-15 07:08 +0200
  Re: How to pm3d plot a kind of randomized data set "Phil B." <philippbasler@googlemail.com> - 2015-07-27 03:18 -0700

csiph-web