|
From: Tom L. <tl...@cp...> - 2013-08-19 20:37:09
|
Am I missing something, or is there no polar plot equivalent for "mytics"- minor tics on the ordinate axis? I'd expect these to be "mrtics"... Many thanks, Tom |
|
From: Ethan M. <eam...@gm...> - 2013-08-20 22:25:30
|
There has not been an "mrtics" up till now, but it sounds reasonable. Look for it to appear in the CVS version presently. On Mon, Aug 19, 2013 at 1:23 PM, Tom Lawton <tl...@cp...> wrote: > Am I missing something, or is there no polar plot equivalent for "mytics"- > minor tics on the ordinate axis? I'd expect these to be "mrtics"... > > Many thanks, > > Tom > > ------------------------------------------------------------------------------ > Introducing Performance Central, a new site from SourceForge and > AppDynamics. Performance Central is your source for news, insights, > analysis and resources for efficient Application Performance Management. > Visit us today! > http://pubads.g.doubleclick.net/gampad/clk?id=48897511&iu=/4140/ostg.clktrk > _______________________________________________ > gnuplot-info mailing list > gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > |
|
From: Tom L. <tl...@cp...> - 2013-08-21 00:17:20
|
Awesome, thankyou! Following on from that....: Also, as I'm coding a (LabVIEW) wrapper for gnuplot, it strikes me polar plots would have a flatter syntax, more closely related to X-Y plots, if there were "thetatics" and "mthetatics", such that "set grid polar" could follow similar syntax to XY plots, without the currently required exception of passing the radial tic spacing.... So instead of: set grid polar 45 there [w|c]ould be: set thetatics 45 set mthetatics 3 set rics 0,1,10 set mrtics 2 set grid polar thetatics mthetatics rtics nomrtics -wordier, but flatter, and more flexible....? I'm afraid, as a LabVIEW programmer, I'm in no position to submit a patch, just this feature suggestion/ request... Thanks for your consideration, Tom On 20 Aug 2013, at 16:25, Ethan Merritt wrote: There has not been an "mrtics" up till now, but it sounds reasonable. Look for it to appear in the CVS version presently. On Mon, Aug 19, 2013 at 1:23 PM, Tom Lawton <tl...@cp...<mailto:tl...@cp...>> wrote: Am I missing something, or is there no polar plot equivalent for "mytics"- minor tics on the ordinate axis? I'd expect these to be "mrtics"... Many thanks, Tom ------------------------------------------------------------------------------ Introducing Performance Central, a new site from SourceForge and AppDynamics. Performance Central is your source for news, insights, analysis and resources for efficient Application Performance Management. Visit us today! http://pubads.g.doubleclick.net/gampad/clk?id=48897511&iu=/4140/ostg.clktrk _______________________________________________ gnuplot-info mailing list gnu...@li...<mailto:gnu...@li...> https://lists.sourceforge.net/lists/listinfo/gnuplot-info |
|
From: Ethan A M. <eam...@gm...> - 2013-08-21 04:15:35
|
On Tuesday, 20 August 2013, Tom Lawton wrote: > Awesome, thankyou! > > Following on from that....: > > Also, as I'm coding a (LabVIEW) wrapper for gnuplot, it strikes me polar plots would have a flatter syntax, more closely related to X-Y plots, if there were "thetatics" and "mthetatics", such that "set grid polar" could follow similar syntax to XY plots, without the currently required exception of passing the radial tic spacing.... Not quite the same thing. Adding minor tics on the r axis was trivial; it only required adding the r axis to the set of existing axes to which minor tic processing is applied. But there is no "theta" axis, and no data structures are maintained to describe it. So introducing commands that refer to theta would involve writing new code and adding new data structures to support it. Ethan > > So instead of: > set grid polar 45 > > there [w|c]ould be: > set thetatics 45 > set mthetatics 3 > set rics 0,1,10 > set mrtics 2 > set grid polar thetatics mthetatics rtics nomrtics > > -wordier, but flatter, and more flexible....? > > I'm afraid, as a LabVIEW programmer, I'm in no position to submit a patch, just this feature suggestion/ request... > > Thanks for your consideration, > > Tom > > > On 20 Aug 2013, at 16:25, Ethan Merritt wrote: > > There has not been an "mrtics" up till now, but it sounds reasonable. Look for it to appear in the CVS version presently. > > > On Mon, Aug 19, 2013 at 1:23 PM, Tom Lawton <tl...@cp...<mailto:tl...@cp...>> wrote: > Am I missing something, or is there no polar plot equivalent for "mytics"- minor tics on the ordinate axis? I'd expect these to be "mrtics"... > > Many thanks, > > Tom > ------------------------------------------------------------------------------ > Introducing Performance Central, a new site from SourceForge and > AppDynamics. Performance Central is your source for news, insights, > analysis and resources for efficient Application Performance Management. > Visit us today! > http://pubads.g.doubleclick.net/gampad/clk?id=48897511&iu=/4140/ostg.clktrk > _______________________________________________ > gnuplot-info mailing list > gnu...@li...<mailto:gnu...@li...> > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > > > -- Tradition is not the worship of ashes, but the preservation of fire. - Gustav Mahler |