<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Yes, you can open files for in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000180#M103447</link>
    <description>&lt;P&gt;Yes, you can open files for output in a loop in the same way that the sample program opened files for input. You have to change the value supplied with the STATUS= keyword option to 'NEW' or 'REPLACE', as appropriate.&lt;/P&gt;

&lt;P&gt;Files with .f suffixes are taken as being in fixed format. Files with .f90 suffixes are taken to be in free format -- nothing is implied regarding which Fortran standard the contents of the file follow. Before Fortran 90, free format did not exist in public. You can write Fortran 2003 programs in fixed format in a file with the .f suffix, and you can write a Fortran II program in free format in a file with the suffix .f90 (leaving out some features of Fortran II that are 'deleted' in Fortran 90 and later). Some compilers accept suffixes such .f95, etc., but such suffixes are deprecated.&lt;/P&gt;

&lt;P&gt;You should not name a file containing free format source a .f suffix, nor should you name a fixed format source file with the .f90 suffix. The compiler may provide options to override the implied file type based on the suffix, but at this stage you have no need for such features.&lt;/P&gt;

&lt;P&gt;To give the executable a name other than the default 'a.out', use the &lt;STRONG&gt;-o&lt;/STRONG&gt; option in the command line used for linking (or compiling and linking):&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;$ ifort file1.f file2.f90 ... -o myprog.exe&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 07 Feb 2015 13:48:00 GMT</pubDate>
    <dc:creator>mecej4</dc:creator>
    <dc:date>2015-02-07T13:48:00Z</dc:date>
    <item>
      <title>Question: Reading a large column (1D-array) and writing slices of this array as rows</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000164#M103431</link>
      <description>&lt;P&gt;I am trying to read a large single column (which I am trying to read in as a 1-D array), and then to write slices of this array as rows until the end of the data. Please suggest me the best way to accomplish this task. Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2015 21:35:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000164#M103431</guid>
      <dc:creator>bhvj</dc:creator>
      <dc:date>2015-02-04T21:35:45Z</dc:date>
    </item>
    <item>
      <title>A 1-D array is a 1-D array, i</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000165#M103432</link>
      <description>&lt;P&gt;A 1-D array is a 1-D array, i.e, there is no distinction between a 'column' and 'row', concepts that make sense only in a 2-D plane or the nearly flat surface of the Earth.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;To output a 2-D array in row-major format, you can use implied do lists or array slices. For example,&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:;"&gt;REAL A(10,15)
...
READ (*,*) A ! read A by columns, i.e, Col-1 followed by Col-2 ...
...
WRITE(*,'(15E12.3)') ((A(i,j),j=1,15),i=1,10)
...&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2015 13:15:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000165#M103432</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-02-05T13:15:07Z</dc:date>
    </item>
    <item>
      <title>Thank you for your response</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000166#M103433</link>
      <description>&lt;P&gt;Thank you for your response and the sample code for converting a 2-D array in row format. As I understand, in order to accomplish my task of&amp;nbsp; converting single column into rows, I cannot read it is an array. Can you please suggest me the best way to accomplish this?&lt;/P&gt;

&lt;P&gt;Thank you again for your response.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2015 14:40:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000166#M103433</guid>
      <dc:creator>bhvj</dc:creator>
      <dc:date>2015-02-05T14:40:09Z</dc:date>
    </item>
    <item>
      <title>You can read numbers into a 2</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000167#M103434</link>
      <description>&lt;P&gt;You can read numbers into a 2-D Fortran array in any order that you please, subject to the rules of the language. However, accessing memory with a stride other than the unit stride for the data type can result in poor performance.&lt;/P&gt;

&lt;P&gt;If you will describe your situation in a bit more detail I could offer a more useful suggestion, but here is what I can say based on what you have written. If you wish to store a matrix on a storage device and read that matrix into a Fortran 2D array, that can be done efficiently if the storage contains the matrix of size m X n in the following order: (1,1), (2,1), ..., (m,1), &amp;nbsp; &amp;nbsp;(1,2), (2,2), ..., (m,2), &amp;nbsp; ......,(1,n), (2,n), ..., (m,n), which is what is commonly named "column-major format" or "by columns".&lt;/P&gt;

&lt;P&gt;You may consider whether to change the order in which the matrix is stored on mass storage (disk drive, SSD, USB drive, etc.) to make the Fortran program more efficient, if the matrix is not stored in the order that I described in the preceding paragraph. For instance, if the array is going to be read many times by the Fortran program, write a utility program to read the data file and rewrite the matrix in column-major order, and read the new file by columns in your Fortran program.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2015 15:19:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000167#M103434</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-02-05T15:19:00Z</dc:date>
    </item>
    <item>
      <title>Thank you very much for your</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000168#M103435</link>
      <description>&lt;P&gt;Thank you very much for your valuable and quick response. Just to let you know my situation in more detail:&lt;/P&gt;

&lt;P&gt;I have 14975 values in a single column, which I am trying to read in and then write, in the&amp;nbsp; same order,&amp;nbsp;as rows (each row containing 12 values) until the last value (it is ok if the last row has only a few values than 12). This read and write might have to be done several times by the FORTRAN program. Attached herewith are&amp;nbsp;screenshots of the part-data in&amp;nbsp;column and the part-data in&amp;nbsp;row. Please let me know if you have further suggestions.&lt;/P&gt;

&lt;P&gt;Thank you again for your valuable suggestions.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2015 16:12:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000168#M103435</guid>
      <dc:creator>bhvj</dc:creator>
      <dc:date>2015-02-05T16:12:01Z</dc:date>
    </item>
    <item>
      <title>Does the black text of rf_col</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000169#M103436</link>
      <description>&lt;P&gt;Does the black text of rf_col.png represent the contents of the input file (red text is not part of file)?&lt;/P&gt;

&lt;P&gt;Does the black text of rf_row.png represent the contents of the output file you desire?&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2015 17:44:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000169#M103436</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2015-02-05T17:44:27Z</dc:date>
    </item>
    <item>
      <title>Jim,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000170#M103437</link>
      <description>&lt;P&gt;Jim,&lt;/P&gt;

&lt;P&gt;Yes, the black text of rf_col.png represent the contents of the input file and the red text are only row numbers, however, I am trying to read only the last column.&lt;/P&gt;

&lt;P&gt;The black text of rf_row.png represent the contents of the desired output file.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2015 17:58:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000170#M103437</guid>
      <dc:creator>bhvj</dc:creator>
      <dc:date>2015-02-05T17:58:03Z</dc:date>
    </item>
    <item>
      <title>I now see that this is a</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000171#M103438</link>
      <description>&lt;P&gt;I now see that this is a simple data processing job involving reformatting some tabular data. For this, there is no need to think of matrices and 2D arrays.&lt;/P&gt;

&lt;P&gt;The attached zip contains some made up data and a program to do the reformatting. Basically, what the program does is to read lines until either (i) the first column value (year?) changes or twelve values have been stored. In either of these cases, the appropriate output is done, counters reset, and the cycle is continued until the input file is exhausted.&lt;/P&gt;

&lt;P&gt;Please test the program on your data, or attach your data file in your reply.&lt;/P&gt;

&lt;P&gt;When you post program source or data, please do not use image formats such as PNG, but use plain text files, zipped up if appropriate.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2015 19:21:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000171#M103438</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-02-05T19:21:43Z</dc:date>
    </item>
    <item>
      <title>Thanks again for your</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000172#M103439</link>
      <description>&lt;P&gt;Thanks again for your response and suggestions. Attached herewith is the zip file (containing the source used, input, the desired output and error), with which I tested the program. I am using the intel64 FORTRAN compiler, not sure if the syntax errors are due to&amp;nbsp;the differences between f90 and intel64.&lt;/P&gt;

&lt;P&gt;Thank you again for your help.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2015 19:51:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000172#M103439</guid>
      <dc:creator>bhvj</dc:creator>
      <dc:date>2015-02-05T19:51:14Z</dc:date>
    </item>
    <item>
      <title>There was no need for you to</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000173#M103440</link>
      <description>&lt;P&gt;There was no need for you to convert the program code from free format to fixed format but, you did, and did not format the line with the label 100 correctly. Labels have to be in columns 1 to 5, and the statement must begin on or after column 7. Make that change, and the program will run.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2015 21:37:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000173#M103440</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-02-05T21:37:33Z</dc:date>
    </item>
    <item>
      <title>I appreciate it very much for</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000174#M103441</link>
      <description>&lt;P&gt;I appreciate it very much for all your help. The program runs to produce the desired output. I have the following questions, if I may ask: Can you please explain the purpose of the step: "flush stored values out". Is it to clear out the stored values in the memory? And the way to do that is to write an array which has null values in it, is that right (the way it is done here: "write (*,'(12F7.2)')v(1:nval)", where "nval"=1)?&lt;/P&gt;

&lt;P&gt;Also, what do the terms free format&amp;nbsp;&amp;amp; fixed format mean?&lt;/P&gt;

&lt;P&gt;Thanks again for all your help.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2015 06:25:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000174#M103441</guid>
      <dc:creator>bhvj</dc:creator>
      <dc:date>2015-02-06T06:25:45Z</dc:date>
    </item>
    <item>
      <title>There are many ways to write</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000175#M103442</link>
      <description>&lt;P&gt;There are many ways to write a program to perform the desired actions. The version that I gave provides a small amount of memory to hold just one line of output. Input records are read and the information from the last column is stored into consecutive locations in that block of memory until all 12 locations are full. Then, the memory is "flushed" (only figuratively) by writing the 12 (or fewer, if appropriate) values to the output medium and resetting &lt;STRONG&gt;nval &lt;/STRONG&gt;to 0.&lt;/P&gt;

&lt;P&gt;The WRITE statement with I/O list v(1:nval) contains nval elements, when nval is &amp;gt; 0. If nval is zero, the list has no elements, but a WRITE statement will still output a blank line. If that is not desired, you can change the WRITE statement to "if (nval &amp;gt; 0) WRITE ...".&lt;/P&gt;

&lt;P&gt;Fortran source code files may be in free form or fixed form. Fixed form is obsolete and can be troublesome, but many old codes are still in that form. See&amp;nbsp;https://software.intel.com/en-us/blogs/2013/01/11/doctor-fortran-in-source-form-just-wants-to-be-free for details. Decades ago, one wrote Fortran programs on coding forms, which were sheets of paper with lines and columns printed in light color; for example, see &lt;A href="http://odl.sysworks.biz/disk$cddoc04jan11/decw$book/aa-d034e-te.p24.decw$book"&gt;this link&lt;/A&gt; .&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2015 08:43:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000175#M103442</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-02-06T08:43:00Z</dc:date>
    </item>
    <item>
      <title>Thank you for the detailed</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000176#M103443</link>
      <description>&lt;P&gt;Thank you for the detailed explanation, and thanks again for your help.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2015 14:56:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000176#M103443</guid>
      <dc:creator>bhvj</dc:creator>
      <dc:date>2015-02-06T14:56:50Z</dc:date>
    </item>
    <item>
      <title>I have another follow-up</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000177#M103444</link>
      <description>&lt;P&gt;I have another follow-up question regarding reading and reformatting the data: If the number of data files&amp;nbsp;to be read are large (for example, if there are 60 files), in FORTRAN is there an efficient way to do this, rather than numbering (or re-naming the files with suffixes as 1 to 60) and using "OPEN", with each specific file name in the&amp;nbsp;program. (I would also want to write to 60 different output files). I will try to pick up from any expert suggestions you might have. Thank you very much once again.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Feb 2015 00:24:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000177#M103444</guid>
      <dc:creator>bhvj</dc:creator>
      <dc:date>2015-02-07T00:24:18Z</dc:date>
    </item>
    <item>
      <title>This is a frequently asked</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000178#M103445</link>
      <description>&lt;P&gt;This is a frequently asked question. The attached program attempts to open files 'load10', 'load11',..., 'load15'. As you can see, only files 'load11' and 'load13' exist, and the program prints a message to indicate whether a file was opened or could not be found.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Feb 2015 03:11:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000178#M103445</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-02-07T03:11:10Z</dc:date>
    </item>
    <item>
      <title>So, just like the files</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000179#M103446</link>
      <description>&lt;P&gt;So, just like the files 'load10', 'load11',..., 'load15' are opened using a do-loop, these files with suffixes 10 to 15 could read using a do-loop and also the corresponding output files with suffixes 10 to 15 could be written using a do-loop, is that correct?&lt;/P&gt;

&lt;P&gt;This time I tried to compile the .f90 file without changing the format using&amp;nbsp; the intel-64 bit compiler, it did compile. But when the file with ".f90" extension was copied into a file with ".f" extension, it didn't get compiled, it gave errors. In order to get it to compile the file with ".f" extension, I had to change it to fixed format. What do the FORTRAN files with different extensions, such as ".f90" and ".f" mean?&lt;/P&gt;

&lt;P&gt;Also, I have the following question regarding the executable: It gives a default name to the executable as "a.out", is there a way to give a specific name to the executable, with a ".exe" extension?&lt;/P&gt;

&lt;P&gt;Thank you very much for all your valuable responses.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Feb 2015 12:48:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000179#M103446</guid>
      <dc:creator>bhvj</dc:creator>
      <dc:date>2015-02-07T12:48:51Z</dc:date>
    </item>
    <item>
      <title>Yes, you can open files for</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000180#M103447</link>
      <description>&lt;P&gt;Yes, you can open files for output in a loop in the same way that the sample program opened files for input. You have to change the value supplied with the STATUS= keyword option to 'NEW' or 'REPLACE', as appropriate.&lt;/P&gt;

&lt;P&gt;Files with .f suffixes are taken as being in fixed format. Files with .f90 suffixes are taken to be in free format -- nothing is implied regarding which Fortran standard the contents of the file follow. Before Fortran 90, free format did not exist in public. You can write Fortran 2003 programs in fixed format in a file with the .f suffix, and you can write a Fortran II program in free format in a file with the suffix .f90 (leaving out some features of Fortran II that are 'deleted' in Fortran 90 and later). Some compilers accept suffixes such .f95, etc., but such suffixes are deprecated.&lt;/P&gt;

&lt;P&gt;You should not name a file containing free format source a .f suffix, nor should you name a fixed format source file with the .f90 suffix. The compiler may provide options to override the implied file type based on the suffix, but at this stage you have no need for such features.&lt;/P&gt;

&lt;P&gt;To give the executable a name other than the default 'a.out', use the &lt;STRONG&gt;-o&lt;/STRONG&gt; option in the command line used for linking (or compiling and linking):&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;$ ifort file1.f file2.f90 ... -o myprog.exe&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Feb 2015 13:48:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000180#M103447</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-02-07T13:48:00Z</dc:date>
    </item>
    <item>
      <title>Thank you very much once</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000181#M103448</link>
      <description>&lt;P&gt;Thank you very much once again. I have the following&amp;nbsp; questions regarding the sample program:&lt;/P&gt;

&lt;P&gt;What does "intent(in)" mean in the variable declaration?&lt;/P&gt;

&lt;P&gt;What does "I0" format mean when "fileno" is written to "filesno"?&lt;/P&gt;

&lt;P&gt;Thanks again.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Feb 2015 11:34:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000181#M103448</guid>
      <dc:creator>bhvj</dc:creator>
      <dc:date>2015-02-08T11:34:16Z</dc:date>
    </item>
    <item>
      <title>For answers to these</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000182#M103449</link>
      <description>&lt;P&gt;For answers to these questions please consult the IFort manual (as installed on your machine, or at&amp;nbsp;https://software.intel.com/en-us/compiler_15.0_ug_f ). The manual has a "search" feature which enables locating the section &lt;SPAN style="font-size: 16.2600002288818px; line-height: 19.511999130249px;"&gt;relevant&amp;nbsp;&lt;/SPAN&gt;to a question.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Feb 2015 11:41:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000182#M103449</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-02-08T11:41:55Z</dc:date>
    </item>
    <item>
      <title>Thank you very much once</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000183#M103450</link>
      <description>&lt;P&gt;Thank you very much once again.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Feb 2015 15:44:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Question-Reading-a-large-column-1D-array-and-writing-slices-of/m-p/1000183#M103450</guid>
      <dc:creator>bhvj</dc:creator>
      <dc:date>2015-02-08T15:44:03Z</dc:date>
    </item>
  </channel>
</rss>

