<html>
<body>
<font size=3>Saang-Yoon <br><br>
I am not sure whether your code attempting to use looping and tran in
report section failed or you are just wondering if it is possible. 
There should be no problem doing this in the report section.  For
example the following code added to report section of
"catage.tpl" example distributed with admb works 
fine:<br><br>
 report << "Transposed F table " << 
endl;<br>
  report << trans(F)<<endl;<br>
  int i,j;<br>
  for (i=1;i<=nyrs;i++)<br>
    for (j=1;j<=nages;j++)<br>
    {<br>
      {<br>
      if (i==1 & j==1)
report<<"Year "<< "Age " << "
F   " <<  " N 
"<<endl;<br>
      report <<i
<<"   
"<<j<<"    
"<<F(i,j)<<"   " <<
N(i,j)<<endl;<br><br>
Jim <br><br>
At 10:22 PM 5/28/2011, Saang-Yoon wrote:<br>
<blockquote type=cite class=cite cite="">Hello.<br>
I wonder about whether REPORT_SECTION allows "for" looping or
"trans"<br>
operation (i.e., transpose).  I would like to arrange outputs
from<br>
REPORT_SECTION in a vertical or horizontal way.  Of course, I
could<br>
arrange them  in the way of my preference before the section, and
then<br>
put them in the section.  But I suspect that advanced ADMB users
may<br>
be able to do so in REPORT_SECTION.   Thank you,<br>
Saang-Yoon<br>
_______________________________________________<br>
Users mailing list<br>
Users@admb-project.org<br>
<a href="http://lists.admb-project.org/mailman/listinfo/users" eudora="autourl">http://lists.admb-project.org/mailman/listinfo/users</a>
</blockquote>
<x-sigsep><p></x-sigsep>
Jim Bence<br>
Dept. of Fisheries and Wildlife <br>
Michigan State University<br>
<a href="http://www.msu.edu/user/bence/" eudora="autourl">http://www.msu.edu/user/bence/</a></font></body>
</html>