X-Authentication-Warning: delorie.com: mail set sender to geda-help-bounces using -f X-Recipient: geda-help AT delorie DOT com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=n5cZGTV9L+F9/+8IpBojqWXU3SkqTQtnLM44Rc+TGzw=; b=YkrFZuPs5mpBIRw3hl3KpcrU3E6IdyR3Ey97eBU0FGRm9xd9IYmnX7iWXZOi6jbRIG CNsUvXr6z0y9et+4WPHrYmQRHuyM5i9s/5C9uOINHenllpAkQH4++Dy6/dtlA21Uiw2t jpX44iwWx9ec5tiVmoPc0AFJ5xx0x0WVR3eUxo0VUkKVgmbZR0KPyYAvzjFhPuhFYUEw 6S0UXFb7/Ddo1nvlHjg8XK4Fa1nQ2W7h47UoEKUHFQbPoUmt67Pr9VTruhQnyXt6YwxS 8Cv1PT2Wz4zpLyM/siKnT7+VYia3pRXFAFe7y2Pl2r6A0gcq6j2is7mWpJxRga1bt4bu f9vg== MIME-Version: 1.0 In-Reply-To: <3404f7dd260e14ce9e35e17b3a1bc8d6.squirrel@webmail.strucktower.com> References: <3404f7dd260e14ce9e35e17b3a1bc8d6 DOT squirrel AT webmail DOT strucktower DOT com> Date: Wed, 19 Dec 2012 12:21:55 +0300 Message-ID: Subject: Re: [geda-help] Re: Using a mouse with gEDA/ngspice graphs in Linux? From: Vladimir Zhbanov To: geda-help AT delorie DOT com Content-Type: text/plain; charset=ISO-8859-1 Reply-To: geda-help AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-help AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk Hi Keith I'm doing some work with ngspice now and I found (once again after a while) that using gnuplot with ngspice is very easy and this could be useful for you. Just type gnuplot filename v(1) v(5,2) ... and ngspice will open a gnuplot window (similar to what is used for the plot command), and output three files: data file (filename.data) containing numerical data of your plot; gnuplot plot file (filename.plt) containing commands for gnuplot you may wish to change or learn; and EPS file (filename.eps) which you can easily convert into PNG using the imagemagick's 'convert' program or use it as is to preview your plots in a postscript viewer. I just remember you needed PNG output. The output data file can also be used to view the plots in gwave (and maybe gaw). Just do: 'gwave filename.data' and drag'n'drop one of the items from the variable window into one of the wavepanels. Cheers