Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #2810
| Newsgroups | comp.graphics.apps.gnuplot |
|---|---|
| Date | 2015-03-12 20:03 -0700 |
| References | <dangela-DD8E4A.15231814032004@news6.west.earthlink.net> <c348de$n6c$1@nets3.rz.RWTH-Aachen.DE> <dd551e1a-66bf-4233-84c6-7e36d6df384e@googlegroups.com> <mdsdqd$h0g$1@dont-email.me> |
| Message-ID | <6fb8de4d-a478-4bc3-944a-b836753b033a@googlegroups.com> (permalink) |
| Subject | Re: axis range wrong in multiplot - multiplot.gp (1/1) |
| From | samoconnor@mac.com |
On my machine, gnuplot --version says "gnuplot 4.6 patchlevel 4". Does that mean its 4.6.4? The following plot results in both y-axes having 10 at the bottom and 0 at the top: set terminal png; set multiplot layout 2,1; set yrange [10:0]; plot (5); set yrange [0:10]; plot (5); Adding the "noreverse" option to the second yrange fixes the problem: set terminal png; set multiplot layout 2,1; set yrange [10:0]; plot (5); set yrange [0:10] noreverse; plot (5);
Back to comp.graphics.apps.gnuplot | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: axis range wrong in multiplot - multiplot.gp (1/1) samoconnor@mac.com - 2015-03-11 21:55 -0700
Re: axis range wrong in multiplot - multiplot.gp (1/1) Ethan A Merritt <EAMerritt@gmail.com> - 2015-03-12 09:11 -0700
Re: axis range wrong in multiplot - multiplot.gp (1/1) samoconnor@mac.com - 2015-03-12 20:03 -0700
Re: axis range wrong in multiplot - multiplot.gp (1/1) Ethan A Merritt <EAMerritt@gmail.com> - 2015-03-13 19:29 -0700
csiph-web