|
From: dups <nic...@vo...> - 2007-08-12 11:50:07
|
Thanks very much !!! It works fine Hans-Bernhard Br=C3=B6ker-2 wrote: >=20 > dups wrote: >> I would like to have a broken y axis for my plot. By "broken" i mean for >> example, one part going from 0.1 to 0.3 then 0.8 to 1 on the same axis >> without including ]0.3:0.8[. I can actually do that in multiplot mode, >> but >> maybe there's a simpliest way to do that ???? =20 >=20 > There's a simpler way, but not a very simple one. >=20 > =09yt(y)=3D (y <=3D 0.3) ? y : (y - 0.8 + 0.3 + 0.05) > =09set ytics (0.0, 0.1, 0.2, 0.3, \ > '0.8' yt(0.8), '0.9' yt(0.9), '1.0' yt(1)) > =09set border 5 > =09# draw y axes and // marks by 'set arrow' here... > =09plot yt(f(x)) >=20 >=20 >=20 > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gnuplot-info mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info >=20 >=20 --=20 View this message in context: http://www.nabble.com/Gnuplot-%22broken-axis%= 22-tf4254029.html#a12113440 Sent from the Gnuplot - User mailing list archive at Nabble.com. |