<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>
Dear Ricardo,<BR>&nbsp;<BR>Thanks a lot. Yes, it works.<BR>&nbsp;<BR>Best regards,<BR>&nbsp;<BR>T.<br><br>&gt; ------------------------------<br>&gt; <br>&gt; Message: 2<br>&gt; Date: Tue, 12 Feb 2013 17:50:08 -0300<br>&gt; From: "Ricardo Hallak" &lt;hallak@model.iag.usp.br&gt;<br>&gt; Subject: Re: [gradsusr] how to put the output numbers in an excel or a<br>&gt;         text        file<br>&gt; To: GrADS Users Forum &lt;gradsusr@gradsusr.org&gt;<br>&gt; Message-ID: &lt;20130212203638.M95719@model.iag.usp.br&gt;<br>&gt; Content-Type: text/plain; charset="iso-8859-1"<br>&gt; <br>&gt; T.,<br>&gt; <br>&gt; I think I've identified the problem in your script.<br>&gt; <br>&gt; Please, try this:<br>&gt; <br>&gt; vars=r1','r2','r3','r4','f1','f2','f3','f4','f5<br>&gt; res=write('filename.txt', vars ,append)<br>&gt; <br>&gt; That is, each comma has to be put between quotes, because they are understood as strings by the script interpreter.<br>&gt; The new script variable vars means (for the script) something like that:<br>&gt; 34.5,52.3,68.9,.........<br>&gt; <br>&gt; Alternatively:<br>&gt; <br>&gt; res=wwrite('filename.txt',r1','r2','r3','r4','f1','f2','f3','f4','f5,append)<br>&gt; <br>&gt; Hope this helps,<br>&gt; Ricardo<br>&gt; <br>&gt; On Mon, 11 Feb 2013 18:32:52 +0000, T. haghroosta wrote<br>&gt; &gt; Dear Ricardo,<br>&gt; &gt; ?<br>&gt; &gt; It works, but I have 10 oputputs and I tried your suggestion in this way:<br>&gt; &gt; ?<br>&gt; &gt; res=write('filename.txt', r1, r2, r3, r4, r5, f1, f2, f3 ,f4 ,f5 ,append)<br>&gt; &gt; ?<br>&gt; &gt; Which I used for all outputs the "subwrd(result,4)". The outputs are shown in the window, but the txt file just shows the r1 and f1!? What is the problem?<br>&gt; &gt; ?<br>&gt; &gt; Regards,<br>&gt; &gt; ?<br>&gt; &gt; T.<br>&gt; &gt; ?<br>&gt; &gt; <br>&gt; &gt; &gt; ------------------------------<br>&gt; &gt; &gt; <br>&gt; &gt; &gt; Message: 8<br>&gt; &gt; &gt; Date: Mon, 11 Feb 2013 12:50:35 -0300<br>&gt; &gt; &gt; From: "Ricardo Hallak" &lt;hallak@model.iag.usp.br&gt;<br>&gt; &gt; &gt;
 Subject: Re: [gradsusr] how to put the output numbers in an excel or a<br>&gt; &gt; &gt; text file<br>&gt; &gt; &gt; To: GrADS Users Forum &lt;gradsusr@gradsusr.org&gt;<br>&gt; &gt; &gt; Message-ID: &lt;20130211154118.M8968@model.iag.usp.br&gt;<br>&gt; &gt; &gt; Content-Type: text/plain; charset="iso-8859-1"<br>&gt; &gt; &gt; <br>&gt; &gt; &gt; Dear T.,<br>&gt; &gt; &gt; try this:<br>&gt; &gt; &gt; <br>&gt; &gt; &gt; 'reinit'<br>&gt; &gt; &gt;!; 'open E:\test.ctl'<br>&gt; &gt; &gt; 'set t 1'<br>&gt; &gt; &gt; 'set lat 10'<br>&gt; &gt; &gt; 'set lon 135'<br>&gt; &gt; &gt; 'define r1= sst'<br>&gt; &gt; &gt; 'set t 2'<br>&gt; &gt; &gt; 'set lat 20'<br>&gt; &gt; &gt; 'set lon 100'<br>&gt; &gt; &gt; 'define r2= sst'<br>&gt; &gt; &gt; 'define aver= (r1+r2)/2'<br>&gt; &gt; &gt; 'd aver'<br>&gt; &gt; &gt; newvar=subwrd(result,4)<br>&gt; &gt; &gt; res=write('filename.txt',newvar,append)<br>&gt; &gt; &gt; 'quit'<br>&gt; &gt; &gt; <br>&gt; &gt; &gt; Hope this helps.<br>&gt; &gt; &gt; Ricardo<br>&gt; &gt; &gt; <br>&gt; &gt; &gt; On Mon, 11 Feb 2013 13:04:58 +0000, T. haghroosta wrote<br>&gt; &gt; &gt; &gt; ?<br>&gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; Dear?All,<br>&gt; &gt; &gt; &gt; ?<br>&gt; &gt; &gt; &gt; I?wrote this script and I would like to see the amount of "aver" as an output in a .txt? or .xls file. Could you please help me?<br>&gt; &gt; &gt; &gt; ?<br>&gt; &gt; &gt; &gt; 'reinit'<br>&gt; &gt; &gt; &gt; 'open E:\test.ctl'<br>&gt; &gt; &gt; &gt; 'set t 1'<br>&gt; &gt; &gt; &gt; 'set lat 10'<br>&gt; &gt; &gt; &gt; 'set lon 135'<br>&gt; &gt; &gt; &gt; 'define r1= sst'<br>&gt; &gt; &gt; &gt; 'set t 2'<br>&gt; &gt; &gt; &gt; 'set lat 20'<br>&gt; &gt; &gt; &gt; 'set lon 100'<br>&gt; &gt; &gt; &gt; 'define r2= sst'<br>&gt; &gt; &gt; &gt; 'define av!er= (r1+r2)/2'<br>&gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; ?Regards,<br>&gt; &gt; &gt; &gt; ?<br>&gt; &gt; &gt; &gt; T.<br>&gt; &gt; &gt; &gt; ?<br>&gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; Dear All, I have a script to calculate the averag
e of different groups of numbers. How can I show the outputs of the script running, contain numbers, in an excel or a text file? Regards, T. <br>&gt; &gt; &gt; &gt; &gt; -------------- next part --------------<br>&gt; &gt; &gt; &gt; &gt; An HTML attachment was scrubbed...<br>&gt; &gt; &gt; &gt; &gt; URL: http://gradsusr.org/pipermail/gradsusr/attachments/20130208/ca3e352a/attachment-0001.html <br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; ------------------------------<br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; Message: 2<br>&gt; &gt; &gt; &gt; &gt; Date: Fri, 8 !Feb 2013 10:37:44 -0200<br>&gt; &gt; &gt; &gt; &gt; From: RafaelCB &lt;rafael.ciram@gmail.com&gt;<br>&gt; &gt; &gt; &gt; &gt; Subject: Re: [gradsusr] how put the output numbers in an excel or a<br>&gt; &gt; &gt; &gt; &gt; text file<br>&gt; &gt; &gt; &gt; &gt; To: GrADS Users Forum &lt;gradsusr@gradsusr.org&gt;<br>&gt; &gt; &gt; &gt; &gt; Message-ID:<br>&gt; &gt; &gt; &gt; &gt; &lt;CAAgZ0pL8bQHs235nXYfTZzKJwEj1uPot9PrUbnz2!evQGQowCAA@mail.gmail.com&gt;<br>&gt; &gt; &gt; &gt; &gt; Content-Type: text/plain; charset="iso-8859-1"<br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; An example follows:<br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; 'd gr2stn(rh.1,min.2)'<br>&gt; &gt; &gt; &gt; &gt; rh=sublin(result,_n2)<br>&gt; &gt; &gt; &gt; &gt; 'd gr2stn(u10.1,min.2)'<br>&gt; &gt; &gt; &gt; &gt; u1=sublin(result,_n2)<br>&gt; &gt; &gt; &gt; &gt; '!echo 'dia','hora','_sig','lo','la','rh','u1' | sed s@\ @@g &gt;&gt; verific.dat'<br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; I have helped.<br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; Regards.<br>&gt; &gt; &gt; &gt; &gt; -- <br>&gt; &gt; &gt; &gt; &gt; *Rafael Censi Borges<br>&gt; &gt; &gt; &gt; &gt; Meteorologia - Epagri/Ciram<br>&gt; &gt; &gt; &gt; &gt; +55 (48)3665-5130<br>&gt; &gt; &gt; &gt; &gt; http://ciram.epagri.sc.gov.br*<br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; 2013/2/8 T. haghroosta &lt;haghroos
ta@hotmail.com&gt;<br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; &gt; Dear All,<br>&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &amp;g!t; I have a script to calculate the average of differ!ent groups of numbers.<br>&gt; &gt; &gt; &gt; &gt; &gt; How can I show the outputs of the script running, contain numbers, in an<br>&gt; &gt; &gt; &gt; &gt; &gt; excel or a text file?<br>&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; Regards,<br>&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; T.<br>&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; _______________________________________________<br>&gt; &gt; &gt; &gt; &gt; &gt; gradsusr mailing list<br>&gt; &gt; &gt; &gt; &gt; &gt; gradsusr@gradsusr.org<br>&gt; &gt; &gt; &gt; &gt; &gt; http://gradsusr.org/mailman/listinfo/gradsusr<br>&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; -------------- next part --------------<br>&gt; &gt; &gt; &gt; &gt; An HTML attachment was scrubbed...<br>&gt; &gt; &gt; &gt; &gt; URL: http://gradsusr.org/pipermail/gradsusr/attachments/20130208/d9812b61/attachment-0001.html <br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; ------------------------------<br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; _______________________________________________<br>&gt; &gt; &gt; &gt; &gt; gradsusr mailing list<br>&gt; &gt; &gt; &gt; &gt; gradsusr@gradsusr.org<br>&gt; &gt; &gt; &gt; &gt; http://gradsusr.!org/mailman/listinfo/gradsusr<br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; End of gradsusr Digest, Vol 36, Issue 38<br>&gt; &gt; &gt; &gt; &gt; ****************************************<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; <br>&gt; &gt; &gt; Ricardo Hallak<br>&gt; &gt; &gt; <br>&gt; &gt; &gt; Departamento de Ci?ncias Atmosf?ricas (ACA) <br>&gt; &gt; &gt; Instituto de Astronomia, Geof?sica e Ci?ncias Atmosf?ricas (IAG) <br>&gt; &gt; &gt; Universidade de S?o Paulo (USP) <br>&gt; &gt; &gt; Rua do M
at?o, 1226 - Cidade Universit?ria - S?o Paulo SP 05508-900 <br>&gt; &gt; &gt; Phone.: +55 (11) 3091-2850; 3091-4703 <br>&gt; &gt; &gt; Fax: +55 (11) 3091-4714<br>&gt; &gt; &gt; <br>&gt; &gt; &gt; <br>&gt; &gt; &gt; -------------- next part --------------<br>&gt; &gt; &gt; An HTML attachment was scrubbed...<br>&gt; &gt; &gt; URL: http://gradsusr.org/pipermail/gradsusr/attachments/20130211/dee40dd3/attachment.html <br>&gt; &gt; &gt; <br>&gt; &gt; &gt; ------------------------------<br>&gt; &gt; &gt; <br>&gt; &gt; &gt; _______________________________________________<br>&gt; &gt; &gt; gradsusr mailing list<br>&gt; &gt; &gt; gradsusr@gradsusr.org<br>&gt; &gt; &gt; http://gradsusr.org/mailman/listinf!o/gradsusr<br>&gt; &gt; &gt; <br>&gt; &gt; &gt; <br>&gt; &gt; &gt; End of gradsusr Digest, Vol 36, Issue 41<br>&gt; &gt; &gt; ****************************************<br>&gt; <br>&gt; Ricardo Hallak<br>&gt; <br>&gt; Departamento de Ci?ncias Atmosf?ricas (ACA) <br>&gt; Instituto de Astronomia, Geof?sica e Ci?ncias Atmosf?ricas (IAG) <br>&gt; Universidade de S?o Paulo (USP) <br>&gt; Rua do Mat?o, 1226 - Cidade Universit?ria - S?o Paulo SP 05508-900 <br>&gt; Phone.: +55 (11) 3091-2850; 3091-4703 <br>&gt; Fax: +55 (11) 3091-4714<br>&gt; <br>&gt;  <br>&gt; -------------- next part --------------<br>&gt; An HTML attachment was scrubbed...<br>&gt; URL: http://gradsusr.org/pipermail/gradsusr/attachments/20130212/6915b317/attachment-0001.html <br>&gt; <br>&gt; ------------------------------<br>&gt; <br>&gt; Message: 3<br>&gt; Date: Tue, 12 Feb 2013 20:05:17 -0600<br>&gt; From: Jeff Duda &lt;jeffduda319@gmail.com&gt;<br>&gt; Subject: Re: [gradsusr] Increasing the font size and bolding a text<br>&gt; To: Arlindo Meque &lt;mequitomz@yahoo.com.br&gt;,        GrADS Users Forum<br>&gt;         &lt;gradsusr@gradsusr.org&gt;<br>&gt; Message-ID:<br>&gt;         &lt;CAAig09AfyCJedvc4p-R50jaiqpcQACjiQPx9ZgXXaxAQncGVJg@mail.gmail.com&gt;<br>&gt; Content-Type: text/plain; charset="iso-8859-1"<br>&gt; <br>&gt; set strsiz changes font size.  set string sets string t
hickness, which is<br>&gt; what you need to "bold" text.  There is no regular "bold text" function.<br>&gt; <br>&gt; Jeff Duda<br>&gt; <br>&gt; On Tue, Feb 12, 2013 at 10:41 AM, Arlindo Meque &lt;mequitomz@yahoo.com.br&gt;wrote:<br>&gt; <br>&gt; &gt;<br>&gt; &gt; Dear all,<br>&gt; &gt;<br>&gt; &gt;  Just a trivial question:<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;  How can I increase the font size in a plot and bold a text (e.g, title<br>&gt; &gt; or  label for a figure)?<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Arlindo<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; _______________________________________________<br>&gt; &gt; gradsusr mailing list<br>&gt; &gt; gradsusr@gradsusr.org<br>&gt; &gt; http://gradsusr.org/mailman/listinfo/gradsusr<br>&gt; &gt;<br>&gt; &gt;<br>&gt; <br>&gt; <br>&gt; -- <br>&gt; Jeff Duda<br>&gt; Graduate research assistant<br>&gt; University of Oklahoma School of Meteorology<br>&gt; Center for Analysis and Prediction of Storms<br>&gt; -------------- next part --------------<br>&gt; An HTML attachment was scrubbed...<br>&gt; URL: http://gradsusr.org/pipermail/gradsusr/attachments/20130212/34bf670c/attachment-0001.html <br>&gt; <br>&gt; ------------------------------<br>&gt; <br>&gt; Message: 4<br>&gt; Date: Wed, 13 Feb 2013 04:50:19 +0000<br>&gt; From: "T. haghroosta" &lt;haghroosta@hotmail.com&gt;<br>&gt; Subject: Re: [gradsusr] how to put the output numbers in an excel or a<br>&gt;         text        file<br>&gt; To: &lt;gradsusr@gradsusr.org&gt;<br>&gt; Message-ID: &lt;DUB121-W15DA71FA6DB1A01AC63CDADD080@phx.gbl&gt;<br>&gt; Content-Type: text/plain; charset="windows-1256"<br>&gt; <br>&gt; <br>&gt; Dear Ricardo, I have attached my script to the email. All parameters are appeared in terminal window. When I added the res=write('filename.txt',newvar,append)<br>&gt; 'quit'<br>&gt;  to the end of the script, I should replace r2,r3,r4,r5,f2,f3,f4,f5 with "newvar" but it dosen't work correctly. I mean after running the script in 'filename.text' I just see r1 and after running again I see one another r1 is
 placed beside the previous one! What should I do? Can I write those number in an excel file? Regards, T.<br>&gt; <br>&gt; <br>&gt; &gt; To: GrADS Users Forum &lt;gradsusr@gradsusr.org&gt;<br>&gt; &gt; Message-ID: &lt;20130212154325.M14837@model.iag.usp.br&gt;<br>&gt; &gt; Content-Type: text/plain; charset="iso-8859-1"<br>&gt; &gt; <br>&gt; &gt; Dear T.,<br>&gt; &gt; <br>&gt; &gt; test each variable value after capturing it with "subwrd(result,4)".<br>&gt; &gt; <br>&gt; &gt; If the values appear on the terminal, they have to appear in the filename.txt too.<br>&gt; &gt; <br>&gt; &gt; Anyway, if you still have problems with this, please, send me a copy of your script. Sometimes it is only a small detail.<br>&gt; &gt; <br>&gt; &gt; Regards,<br>&gt; &gt; Ricardo<br>&gt; &gt; <br>&gt; &gt; On Mon, 11 Feb 2013 18:32:52 +0000, T. haghroosta wrote<br>&gt; &gt; &gt; Dear Ricardo,<br>&gt; &gt; &gt; ?<br>&gt; &gt; &gt; It works, but I have 10 oputputs and I tried your suggestion in this way:<br>&gt; &gt; &gt; ?<br>&gt; &gt; &gt; res=write('filename.txt', r1, r2, r3, r4, r5, f1, f2, f3 ,f4 ,f5 ,append)<br>&gt; &gt; &gt; ?<br>&gt; &gt; &gt; Which I used for all outputs the "subwrd(result,4)". The outputs are shown in the window, but the txt file just shows the r1 and f1!? What is the problem?<br>&gt; &gt; &gt; ?<br>&gt; &gt; &gt; Regards,<br>&gt; &gt; &gt; ?<br>&gt; &gt; &gt; T.                                               <br>&gt; -------------- next part --------------<br>&gt; An HTML attachment was scrubbed...<br>&gt; URL: http://gradsusr.org/pipermail/gradsusr/attachments/20130213/e7cb1ada/attachment.html <br>&gt; -------------- next part --------------<br>&gt; A non-text attachment was scrubbed...<br>&gt; Name: E1.gs<br>&gt; Type: application/octet-stream<br>&gt; Size: 923 bytes<br>&gt; Desc: not available<br>&gt; Url : http://gradsusr.org/pipermail/gradsusr/attachments/20130213/e7cb1ada/attachment.obj <br>&gt; <br>&gt; ------------------------------<br>&gt; <br>&gt; _______________________________________________<br>&gt; gradsusr mailing list<br>&gt; g
radsusr@gradsusr.org<br>&gt; http://gradsusr.org/mailman/listinfo/gradsusr<br>&gt; <br>&gt; <br>&gt; End of gradsusr Digest, Vol 36, Issue 45<br>&gt; ****************************************<br><BR>                                               </div></body>
</html>