X-Received: by 10.224.215.194 with SMTP id hf2mr23036189qab.0.1366751233239; Tue, 23 Apr 2013 14:07:13 -0700 (PDT) X-Received: by 10.49.17.106 with SMTP id n10mr591346qed.3.1366751233221; Tue, 23 Apr 2013 14:07:13 -0700 (PDT) Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!npeer01.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!gp5no2022312qab.0!news-out.google.com!ef9ni12521qab.0!nntp.google.com!gp5no5379219qab.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.graphics.apps.gnuplot Date: Tue, 23 Apr 2013 14:07:13 -0700 (PDT) In-Reply-To: <87ehkpez2g.fsf@panzer.v.cablecom.net> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=200.89.69.64; posting-account=aUOAeAoAAABphperwpN1apxi3urOHe_l NNTP-Posting-Host: 200.89.69.64 References: <87ehkpez2g.fsf@panzer.v.cablecom.net> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: user defined xtics and mxtics From: Cristian Camilo Mejia Injection-Date: Tue, 23 Apr 2013 21:07:13 +0000 Content-Type: text/plain; charset=ISO-8859-1 X-Received-Bytes: 2290 Xref: csiph.com comp.graphics.apps.gnuplot:1780 Dear all, I can't show the minor tics with the following script; however if I comment the lines for xtics and ytics the minor tics appears without problem. Thanks in advance for any help, Crist. set term postscript eps color enhanced font "Times-Roman" 23 set output "matrix.eps" set palette defined (\ 1 '#0025ad', \ 2 '#0042ad', \ 3 '#0060ad', \ 4 '#007cad', \ 5 '#0099ad', \ 6 '#00ada4', \ 7 '#00ad88', \ 8 '#00ad6b', \ 9 '#00ad4e', \ 10 '#00ad31', \ 11 '#00ad14', \ 12 '#09ad00' \ ) set pm3d map #set pm3d interpolate 2,2 ############## set mxtics 4 set mytics 3 set xtics ("8.36" 0,"8.389" 30, "8.42" 60) font "Times-Roman, 23" set ytics ("1" 0,"0.75" 25,"0.5" 50,"0.25" 75, "0" 100) font "Times-Roman, 23" set cbtics ("1" -0.0316022150218487,"0.5" -0.0316060110926628,"0" -0.0316098071634769)font "Times-Roman, 23" ############# set xlabel 'P' offset 0,0 font "Times-Italic,23" left rotate by 0 set ylabel 'X_{cm}' offset 0,0 font "Times-Italic,23" left rotate by 0 splot 'myfile.txt' matrix #print 'Maximum = ',GPVAL_DATA_Z_MAX #print 'Minimum = ',GPVAL_DATA_Z_MIN