I am plotting several 3D graphs with Gnuplot after experimenting a bit with Google's nice graphing tool. One thing I like from Google's tool is the "boundary box" that it draws around the surface, which makes it easier for me to see the size.
Is there any way to plot this boundary box in Gnuplot?
For instance, this function: z = (15 - x*y) / (100 - x)
Plotted with Google: https://www.google.es/search?q=z+%3D+(15+-+xy)%2F(100-x)&aq=f&oq=z+%3D+(15+-+xy)%2F(100-x)
An equivalent script for Gnuplot:
set grid set xrange [-10:10] set yrange [-10:10] set zrange [-0.7:1] set isosamples 100 set pm3d set hidden3d set ticslevel 0.0 set view 60, 100 splot (15 - x*y) / (100 - x)
Yields the following plot:
Thanks in advance