<HTML>
<HEAD>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META content="Open WebMail 2.30 20040103" name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>

<P><FONT size=2>Zilore,</FONT></P>


<P><FONT size=2>sometimes it is only a problem of swap of words in the binary files.</FONT></P>


<P><FONT size=2>Try use:</FONT></P>


<P><FONT size=2>OPTIONS little_endian</FONT></P>


<P><FONT size=2>or</FONT></P>


<P><FONT size=2>OPTIONS big_endian</FONT></P>


<P><FONT size=2>in the .ctl file.</FONT></P>


<P><FONT size=2>The correct option will depend on the type of your machine.</FONT></P>


<P><FONT size=2>Regards,</FONT></P>


<P><FONT size=2>Ricardo</FONT></P>


<P><FONT size=2><STRONG>On Thu, 17 Mar 2005 09:18:59 -0800, zilore mumba wrote</STRONG>
<BR>&gt; <SPAN lang=EN-GB>Dear Yoshihiro,</SPAN> 
<BR>&gt; <SPAN lang=EN-GB>I tried, as you advised;</SPAN> 
<BR>&gt; <SPAN lang=EN-GB>recl=4*l*m,</SPAN> 
<BR>&gt; <SPAN lang=EN-GB>write(10) cor, no loop,</SPAN> 
<BR>&gt; <SPAN lang=EN-GB>The resulting binary file looks much better than before, but 'd cor'&nbsp; gives&nbsp;'display nan to nan interval inf.'</SPAN> 
<BR>&gt; <SPAN lang=EN-GB>Thanks all the same, i will keep trying.</SPAN> 
<BR>&gt; <SPAN lang=EN-GB>Zilore</SPAN> 
<BR>&gt; <SPAN lang=EN-GB>&nbsp;<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN>
<BR>&gt; 
<BR>&gt; <B><I>Yoshihiro Yamasaki &lt;yamasaki@FIS.UA.PT&gt;</I></B> wrote: </P>

<BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid">Hi !
<BR>&gt; Try the following :
<BR>&gt; 
<BR>&gt; parameter ( L = , M = )
<BR>&gt; dimension cor (L,M)
<BR>&gt; open your file with ---&gt; recl = 4 * L * M
<BR>&gt; irec = 1
<BR>&gt; write(10,rec=irec) cor
<BR>&gt; 
<BR>&gt; no do loop is needed
<BR>&gt; 
<BR>&gt; yyamazaki
<BR>&gt; 
<BR>&gt; Em Thu, 17 Mar 2005 03:12:18 -0800
<BR>&gt; zilore mumba <ZMUMBA@YAHOO.COM>escreveu:
<BR>&gt; &gt;
<BR>&gt; &gt;
<BR>&gt; &gt;
<BR>&gt; &gt; Dear Yoshihiro,
<BR>&gt; &gt;
<BR>&gt; &gt; Thanks very much for sparing your time to spot my silly
<BR>&gt; &gt;slip. Evidently the program was writing zeros. However it
<BR>&gt; &gt;is still not displaying as required.
<BR>&gt; &gt;
<BR>&gt; &gt;
<BR>&gt; &gt;
<BR>&gt; &gt;
<BR>&gt; &gt; Yoshihiro Yamasaki <YAMASAKI@FIS.UA.PT>wrote:Dear
<BR>&gt; &gt;Zilone,
<BR>&gt; &gt;
<BR>&gt; &gt; Assuming that you have DIMENSION COR(55,57), you made a
<BR>&gt; &gt; mistake in your do loop index ( do j and not k )
<BR>&gt; &gt;
<BR>&gt; &gt; do J = 1 , m
<BR>&gt; &gt; irec=irec+1
<BR>&gt; &gt; write(10,rec=irec) (cor(i,j),i=1,l)
<BR>&gt; &gt; enddo
<BR>&gt; &gt;
<BR>&gt; &gt; good luck !
<BR>&gt; &gt;
<BR>&gt; &gt;
<BR>&gt; &gt; Em Wed, 16 Mar 2005 23:21:42 -0800
<BR>&gt; &gt; zilore mumba escreveu:
<BR>&gt; &gt;&gt; I have an apparently very simple problem.
<BR>&gt; &gt;&gt; I have correlation data cor(i,j) over an xy domain.
<BR>&gt; &gt;&gt;Using a fortran program I have written the data into
<BR>&gt; &gt;&gt;binary to display in Grads. Apparently Grads is able to
<BR>&gt; &gt;&gt;open the data file.
<BR>&gt; &gt;&gt; when I put recl=4*l, the display is blank (with only map
<BR>&gt; &gt;&gt;of Africa of course)
<BR>&gt; &gt;&gt; when I put recl=8*l, the display says constant field
<BR>&gt; &gt;&gt;value=0.
<BR>&gt; &gt;&gt;
<BR>&gt; &gt;&gt; Here are snippets from my fortran program:
<BR>&gt; &gt;&gt;
<BR>&gt; &gt;&gt; open
<BR>&gt; &gt;&gt;(10,file='zcor824.dat',form='unformatted',access='direct',
<BR>&gt; &gt;&gt;recl=4*(l+1))
<BR>&gt; &gt;&gt;
<BR>&gt; &gt;&gt; irec=0
<BR>&gt; &gt;&gt; do k=1,m
<BR>&gt; &gt;&gt; irec=irec+1
<BR>&gt; &gt;&gt; write(10,rec=irec) (cor(i,j),i=1,l)
<BR>&gt; &gt;&gt; enddo
<BR>&gt; &gt;&gt;
<BR>&gt; &gt;&gt; and my ctl file
<BR>&gt; &gt;&gt;
<BR>&gt; &gt;&gt; dset zcor824.dat
<BR>&gt; &gt;&gt; undef -1.00E+09
<BR>&gt; &gt;&gt; title correlation
<BR>&gt; &gt;&gt; xdef 55 linear -30 1.5
<BR>&gt; &gt;&gt; ydef 57 linear -42 1.5
<BR>&gt; &gt;&gt; zdef 1 levels 850
<BR>&gt; &gt;&gt; tdef 999 linear 00Z29AUG97 6hr
<BR>&gt; &gt;&gt; vars 1
<BR>&gt; &gt;&gt; cor 1 99 linear correl coeff
<BR>&gt; &gt;&gt; endvars
<BR>&gt; &gt;&gt;
<BR>&gt; &gt;&gt; Any help would be very welcome to resolve my problem
<BR>&gt; &gt;&gt; Thanks all.
<BR>&gt; &gt;&gt;
<BR>&gt; &gt;&gt;
<BR>&gt; &gt;&gt;
<BR>&gt; &gt;&gt;
<BR>&gt; &gt;&gt;
<BR>&gt; &gt;&gt; ---------------------------------
<BR>&gt; &gt;&gt; Do you Yahoo!?
<BR>&gt; &gt;&gt; Yahoo! Small Business - Try our new resources site!
<BR>&gt; &gt;
<BR>&gt; &gt;
<BR>&gt; &gt;
<BR>&gt; &gt;
<BR>&gt; &gt;
<BR>&gt; &gt; ---------------------------------
<BR>&gt; &gt; Do you Yahoo!?
<BR>&gt; &gt; Yahoo! Small Business - Try our new resources site!
<BR>&gt; </BLOCKQUOTE>
<BR>&gt; 
<BR>&gt; 

<HR SIZE=1>
Do you Yahoo!?
<BR>&gt; Yahoo! Small Business - <A href="http://us.rd.yahoo.com/evt=31637/*http://smallbusiness.yahoo.com/resources/">Try our new resources site!</A> 
<BR>
<BR>
<BR>Hallak 
<BR>
<BR>Laboratório de Estudos de Tempestades Severas (LETS) 
<BR>Departamento de Ciências Atmosféricas (DCA) 
<BR>Instituto de Astronomia, Geofísica e Ciências Atmosféricas (IAG) 
<BR>Universidade de São Paulo (USP) 
<BR>Rua do Matão, 1226 - Cidade Universitária -São Paulo SP -05508-900 
<BR>Fone.: +55 (0-XX-11) 3091-4735 
<BR>Fax: +55 (0-XX-11) 3091-4714 
<BR>
<BR></FONT>
</BODY>
</HTML>