Sponsored Content
Top Forums Shell Programming and Scripting Different set key multiplot gnuplot Post 303019847 by supernono06 on Sunday 8th of July 2018 05:13:57 PM
Old 07-08-2018
Thanks Don Cragun. But I don't know how to do that, can you please give me an example or show me? Also how to differentiate the position of the legends in the different subplots?
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Pressing backspace key simulates enter key

Hi, Whenever i press the backspace key, a new line appears, i.e. it works like a enter key. :confused: Thanks (2 Replies)
Discussion started by: vibhor_agarwali
2 Replies

2. Solaris

How to set history key in Solaris

Hi Solaris guys, I just have my solaris 10 setup on x86 old box... How can i get history key? eg. Linux using up/down arrow key to call history command... HPUX using Esc-k How can i do the samething in Solaris? Thanks in advanced! Regards, gary (3 Replies)
Discussion started by: timontt
3 Replies

3. Shell Programming and Scripting

How to set delete Key to erase automatically

We need to su to root in 1000 systems, so it is almost impossible to add "stty erase ^H" to every .profile on these systems. Is there any way to set delete key to erase automatically after running "su -"? Thanks :) (4 Replies)
Discussion started by: aixlover
4 Replies

4. Solaris

Solaris 8 ssh public key authentication issue - Server refused our key

Hi, I've used the following way to set ssh public key authentication and it is working fine on Solaris 10, RedHat Linux and SuSE Linux servers without any problem. But I got error 'Server refused our key' on Solaris 8 system. Solaris 8 uses SSH2 too. Why? Please help. Thanks. ... (1 Reply)
Discussion started by: aixlover
1 Replies

5. Shell Programming and Scripting

gnuplot set key issue

Hi I have a plotting function like this- plot '../processing_old/time0.txt' using 1:6 title "1.6" with boxes fs solid 0.05 ls 5,\ 'time0.txt' using 1:6 title "1.7" with boxes fs solid 0.05 ls 6,\ '../processing_new/time0.txt' using 1:6 title "2.0" with boxes fs solid... (8 Replies)
Discussion started by: jamie_123
8 Replies

6. Shell Programming and Scripting

Grep final set of parameters from fit.log gnuplot file

I would like to grep the final set of fit parameters from a gnuplot log file to form columns that look like this. a_1001 b_1001 x_1001 a_1002 b_1002 x_1002 a_1003 b_1003 x_1003 . . . . . . . . . a_1250 b_1250 c_1250 At... (8 Replies)
Discussion started by: kayak
8 Replies

7. Linux

Gnuplot terminal set to 'unknown'

I installed version 4.6.4 of gnuplot recently on my system running 10.04 ubuntu linux. I am getting error Terminal type set to 'unknown' Also when i try to set term X11 or wxt i get error Terminal type set to 'unknown' ^ unknown or ambiguous terminal... (5 Replies)
Discussion started by: Ujjwal1982
5 Replies

8. Shell Programming and Scripting

Shell Script @ Find a key word and If the key word matches then replace next 7 lines only

Hi All, I have a XML file which is looks like as below. <<please see the attachment >> <?xml version="1.0" encoding="UTF-8"?> <esites> <esite> <name>XXX.com</name> <storeId>10001</storeId> <module> ... (4 Replies)
Discussion started by: Rajeev_hbk
4 Replies
Template::Plugin::GD(3pm)				User Contributed Perl Documentation				 Template::Plugin::GD(3pm)

NAME
Template::Plugin::GD - GD plugin(s) for the Template Toolkit SYNOPSIS
[% USE GD; # create an image img = GD.image(width, height) # allocate some colors black = img.colorAllocate(0, 0, 0); red = img.colorAllocate(255, 0, 0); blue = img.colorAllocate(0, 0, 255); # draw a blue oval img.arc(50, 50, 95, 75, 0, 360, blue); # fill it with red img.fill(50, 50, red); # output binary image in PNG format img.png | redirect('example.png'); %] DESCRIPTION
The Template-GD distribution provides a number of Template Toolkit plugin modules to interface with Lincoln Stein's GD modules. These in turn provide an interface to Thomas Boutell's GD graphics library. These plugins were distributed as part of the Template Toolkit until version 2.15 released in February 2006. At this time they were extracted into this separate distribution. For general information on the Template Toolkit see the documentation for the Template module or <http://template-toolkit.org>. For infor- mation on using plugins, see Template::Plugins and "USE" in Template::Manual::Directives. METHODS
The GD plugin module provides a number of methods to create various other GD objects. But first you need to load the GD plugin. [% USE GD %] Then you can call the following objects against it. image(width, height) Creates a new GD::Image object. [% image = GD.image(100, 200) %] polygon() Creates a new GD::Polygon object. [% poly = GD.polygon; poly.addPt(50,0); poly.addPt(99,99); poly.addPt(0,99); image.filledPolygon(poly, blue); %] text() Creates a new GD::Text object. [% text = GD.text; text.set_text('Some text'); %] GD PLUGINS
These are the GD plugins provided in this distribution. Template::Plugin::GD Front-end module to the GD plugin collection. Template::Plugin::GD::Image Plugin interface providing direct access to the GD::Image module. [% USE image = GD.Image %] Template::Plugin::GD::Polygon Plugin interface providing direct access to the GD::Polygon module. [% USE poly = GD.Polygon; poly.addPt(50,0); poly.addPt(99,99); poly.addPt(0,99); image.filledPolygon(poly, blue); %] Template::Plugin::GD::Text Plugin interface providing direct access to the GD::Text module. [% USE text = GD.Text; text.set_text('Some text'); %] Template::Plugin::GD::Text::Align Plugin interface to the GD::Text::Align module for creating aligned text. Template::Plugin::GD::Text::Wrap Plugin interface to the GD::Text::Wrap module for creating wrapped text. Template::Plugin::GD::Graph::area Plugin interface to the GD::Graph::area module for creating area graphics with axes and legends. Template::Plugin::GD::Graph::bars3d Plugin interface to the GD::Graph::bars3d module for creating 3D bar graphs with axes and legends. Template::Plugin::GD::Graph::bars Plugin interface to the GD::Graph::bars module for creating bar graphs with axes and legends. Template::Plugin::GD::Graph::lines3d Plugin interface to the GD::Graph::lines3d module for creating 3D line graphs with axes and legends. Template::Plugin::GD::Graph::lines Plugin interface to the GD::Graph::lines module for creating line graphs with axes and legends. Template::Plugin::GD::Graph::linespoints Plugin interface to the GD::Graph::linespoints module for creating line/point graphs with axes and legends Template::Plugin::GD::Graph::mixed Plugin interface to the GD::Graph::mixed module for creating mixed graphs with axes and legends. Template::Plugin::GD::Graph::pie3d Plugin interface to the GD::Graph::pie3d module for creating 3D pie charts with legends. Template::Plugin::GD::Graph::pie Plugin interface to the GD::Graph::pie module for creating pie charts with legends. Template::Plugin::GD::Graph::points Plugin interface to the GD::Graph::points module for creating point graphs with axes and legends Template::Plugin::GD::Constants Provides access to various GD constants. [% USE gdc = GD.Constants; font = gdc.gdLargeFont %] AUTHORS
Thomas Boutell wrote the GD graphics library. Lincoln D. Stein wrote the Perl GD modules and Martien Verbruggen wrote the GD::Text and GD::Graph modules that interface with it. Craig Barratt wrote the GD plugins for the Template Toolkit. Andy Wardley wrote the Template Toolkit. Larry wrote Perl. Brian and Dennis wrote C. Dennis and Ken wrote Unix. VERSION
This is version 2.66 of the Template::Plugin::GD module set. COPYRIGHT
Copyright (C) 2001 Craig Barratt, 2006 Andy Wardley. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Template, Template::Plugins, GD perl v5.8.8 2008-03-01 Template::Plugin::GD(3pm)
All times are GMT -4. The time now is 08:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy