Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!ub!ubvmsa.cc.buffalo.edu!v087mxgb From: v087mxgb@ubvmsa.cc.buffalo.edu (Shawn E Thompson) Newsgroups: comp.lang.fortran Subject: Re: Implied write loop question Message-ID: <72495@eerie.acsu.Buffalo.EDU> Date: 23 Apr 91 04:28:23 GMT References: Sender: news@acsu.Buffalo.EDU Reply-To: v087mxgb@ubvmsa.cc.buffalo.edu Organization: University at Buffalo Lines: 29 Nntp-Posting-Host: ubvmsa.cc.buffalo.edu News-Software: VAX/VMS VNEWS 1.3-4.5 In article , moshkovi@sanandreas.ecn.purdue.edu (Gennady Moshkovich) writes... >Hi, hi.... > >I am looking for the way to print out matrix type table with >n rows and m columns. I don't know before what n and m are. >What is the way to print it ? > >Thanks. Gene sure...... ummm....now if I can remember this without references.... WRITE(*,###) ( ( X(I,J), j=1,n), I=1,m) where, of course * is your unit number to write to and ### is your format statement label (or lack thereof) the extra spaces are for clarity only........ st