<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to GettingStarted</title><link>https://sourceforge.net/p/larray/wiki/GettingStarted/</link><description>Recent changes to GettingStarted</description><atom:link href="https://sourceforge.net/p/larray/wiki/GettingStarted/feed" rel="self"/><language>en</language><lastBuildDate>Sun, 17 Apr 2011 17:26:14 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/larray/wiki/GettingStarted/feed" rel="self" type="application/rss+xml"/><item><title>&lt;pre&gt;--- v9 
+++ v10 
@@ -44,18 +44,18 @@
 In Linux or Mac OS X compile using (debug build):
 
     :::sh
-    g++  main.cpp -o getting_starting_debug
-
+    g++  main.cpp -o getting_started_debug
+
 or (release build):
 
     :::sh
-    g++ -03 -DNDEBUG main.cpp -o getting_starting_release
+    g++ -03 -DNDEBUG main.cpp -o getting_started_release
 
 run it with:
 
     :::sh
-    ./getting_starting_debug
+    ./getting_started_debug
 or
 
     :::sh
-    ./getting_starting_release
+    ./getting_started_release
&lt;/pre&gt;</title><link>https://sourceforge.net/p/larray/wiki/GettingStarted/</link><description>&lt;pre&gt;--- v9 
+++ v10 
@@ -44,18 +44,18 @@
 In Linux or Mac OS X compile using (debug build):
 
     :::sh
-    g++  main.cpp -o getting_starting_debug
-
+    g++  main.cpp -o getting_started_debug
+
 or (release build):
 
     :::sh
-    g++ -03 -DNDEBUG main.cpp -o getting_starting_release
+    g++ -03 -DNDEBUG main.cpp -o getting_started_release
 
 run it with:
 
     :::sh
-    ./getting_starting_debug
+    ./getting_started_debug
 or
 
     :::sh
-    ./getting_starting_release
+    ./getting_started_release
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nasos Iliopoulos</dc:creator><pubDate>Sun, 17 Apr 2011 17:26:14 -0000</pubDate><guid>https://sourceforge.net0704c7a6709e7e03495f7819d87a0f2a12a0f738</guid></item><item><title>&lt;pre&gt;--- v8 
+++ v9 
@@ -41,14 +41,21 @@
         return 0;
     }
 
-and compile using (debug build):
-
-
-    :::sh
+In Linux or Mac OS X compile using (debug build):
+
+    :::sh
     g++  main.cpp -o getting_starting_debug
 
 or (release build):
 
     :::sh
     g++ -03 -DNDEBUG main.cpp -o getting_starting_release
 
+run it with:
+
+    :::sh
+    ./getting_starting_debug
+or
+
+    :::sh
+    ./getting_starting_release
&lt;/pre&gt;</title><link>https://sourceforge.net/p/larray/wiki/GettingStarted/</link><description>&lt;pre&gt;--- v8 
+++ v9 
@@ -41,14 +41,21 @@
         return 0;
     }
 
-and compile using (debug build):
-
-
-    :::sh
+In Linux or Mac OS X compile using (debug build):
+
+    :::sh
     g++  main.cpp -o getting_starting_debug
 
 or (release build):
 
     :::sh
     g++ -03 -DNDEBUG main.cpp -o getting_starting_release
 
+run it with:
+
+    :::sh
+    ./getting_starting_debug
+or
+
+    :::sh
+    ./getting_starting_release
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nasos Iliopoulos</dc:creator><pubDate>Sun, 17 Apr 2011 17:25:37 -0000</pubDate><guid>https://sourceforge.net0d38b04d712b2279a2e35554bb0f6938fcf8c69b</guid></item><item><title>&lt;pre&gt;--- v7 
+++ v8 
@@ -17,7 +17,7 @@
 
 Running a simple program
 ===
-After you have installed the larray library, make a text file containing:
+After you have installed the larray library, make a text file named main.cpp containing:
 
     :::c++
     #include &lt;larray/larray.hpp&gt;
&lt;/pre&gt;</title><link>https://sourceforge.net/p/larray/wiki/GettingStarted/</link><description>&lt;pre&gt;--- v7 
+++ v8 
@@ -17,7 +17,7 @@
 
 Running a simple program
 ===
-After you have installed the larray library, make a text file containing:
+After you have installed the larray library, make a text file named main.cpp containing:
 
     :::c++
     #include &lt;larray/larray.hpp&gt;
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nasos Iliopoulos</dc:creator><pubDate>Sun, 17 Apr 2011 17:23:03 -0000</pubDate><guid>https://sourceforge.netfef10d3fe2a7755b615f82a9723b36910008376c</guid></item><item><title>&lt;pre&gt;--- v6 
+++ v7 
@@ -23,17 +23,21 @@
     #include &lt;larray/larray.hpp&gt;
     #include &lt;iostream&gt;
     int main() {
+        typedef larray&lt;double, dyn, 3&gt;::size_type size_type;
+
         larray&lt;double, dyn, 3&gt; mat;
-         larray&lt;double, dyn, 3&gt;::size_type size_type;
         mat.resize(3,3);
+
         for (size_type i=0; i!=3; i++)
             for (size_type j=0; j!=3; j++)
                 mat(i,j) = i+j + i*j;
+
         for (size_type i=0; i!=3; i++) {
             for (size_type j=0; j!=3; j++)
                std::cout &lt;&lt; mat(i,j) &lt;&lt; " ";
             std::cout &lt;&lt; std::endl;
         }
+
         return 0;
     }
 
&lt;/pre&gt;</title><link>https://sourceforge.net/p/larray/wiki/GettingStarted/</link><description>&lt;pre&gt;--- v6 
+++ v7 
@@ -23,17 +23,21 @@
     #include &lt;larray/larray.hpp&gt;
     #include &lt;iostream&gt;
     int main() {
+        typedef larray&lt;double, dyn, 3&gt;::size_type size_type;
+
         larray&lt;double, dyn, 3&gt; mat;
-         larray&lt;double, dyn, 3&gt;::size_type size_type;
         mat.resize(3,3);
+
         for (size_type i=0; i!=3; i++)
             for (size_type j=0; j!=3; j++)
                 mat(i,j) = i+j + i*j;
+
         for (size_type i=0; i!=3; i++) {
             for (size_type j=0; j!=3; j++)
                std::cout &lt;&lt; mat(i,j) &lt;&lt; " ";
             std::cout &lt;&lt; std::endl;
         }
+
         return 0;
     }
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nasos Iliopoulos</dc:creator><pubDate>Sun, 17 Apr 2011 17:20:57 -0000</pubDate><guid>https://sourceforge.netd62a0e3385ed4cc3870c5d6e7398b9473434f8db</guid></item><item><title>&lt;pre&gt;--- v5 
+++ v6 
@@ -18,6 +18,7 @@
 Running a simple program
 ===
 After you have installed the larray library, make a text file containing:
+
     :::c++
     #include &lt;larray/larray.hpp&gt;
     #include &lt;iostream&gt;
&lt;/pre&gt;</title><link>https://sourceforge.net/p/larray/wiki/GettingStarted/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -18,6 +18,7 @@
 Running a simple program
 ===
 After you have installed the larray library, make a text file containing:
+
     :::c++
     #include &lt;larray/larray.hpp&gt;
     #include &lt;iostream&gt;
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nasos Iliopoulos</dc:creator><pubDate>Sun, 17 Apr 2011 17:19:57 -0000</pubDate><guid>https://sourceforge.net73b7d21d9d02d5ef7e13be6cdd8d6e79c8371e22</guid></item><item><title>&lt;pre&gt;--- v4 
+++ v5 
@@ -18,29 +18,32 @@
 Running a simple program
 ===
 After you have installed the larray library, make a text file containing:
-
     :::c++
     #include &lt;larray/larray.hpp&gt;
     #include &lt;iostream&gt;
     int main() {
         larray&lt;double, dyn, 3&gt; mat;
          larray&lt;double, dyn, 3&gt;::size_type size_type;
         mat.resize(3,3);
         for (size_type i=0; i!=3; i++)
             for (size_type j=0; j!=3; j++)
                 mat(i,j) = i+j + i*j;
         for (size_type i=0; i!=3; i++) {
             for (size_type j=0; j!=3; j++)
                std::cout &lt;&lt; mat(i,j) &lt;&lt; " ";
             std::cout &lt;&lt; std::endl;
         }
         return 0;
     }
 
 and compile using (debug build):
 
-gcc  main.cpp -o getting_starting_debug
+
+    :::sh
+    g++  main.cpp -o getting_starting_debug
 
 or (release build):
-gcc -03 -DNDEBUG main.cpp -o getting_starting_release
+
+    :::sh
+    g++ -03 -DNDEBUG main.cpp -o getting_starting_release
 
&lt;/pre&gt;</title><link>https://sourceforge.net/p/larray/wiki/GettingStarted/</link><description>&lt;pre&gt;--- v4 
+++ v5 
@@ -18,29 +18,32 @@
 Running a simple program
 ===
 After you have installed the larray library, make a text file containing:
-
     :::c++
     #include &lt;larray/larray.hpp&gt;
     #include &lt;iostream&gt;
     int main() {
         larray&lt;double, dyn, 3&gt; mat;
          larray&lt;double, dyn, 3&gt;::size_type size_type;
         mat.resize(3,3);
         for (size_type i=0; i!=3; i++)
             for (size_type j=0; j!=3; j++)
                 mat(i,j) = i+j + i*j;
         for (size_type i=0; i!=3; i++) {
             for (size_type j=0; j!=3; j++)
                std::cout &lt;&lt; mat(i,j) &lt;&lt; " ";
             std::cout &lt;&lt; std::endl;
         }
         return 0;
     }
 
 and compile using (debug build):
 
-gcc  main.cpp -o getting_starting_debug
+
+    :::sh
+    g++  main.cpp -o getting_starting_debug
 
 or (release build):
-gcc -03 -DNDEBUG main.cpp -o getting_starting_release
+
+    :::sh
+    g++ -03 -DNDEBUG main.cpp -o getting_starting_release
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nasos Iliopoulos</dc:creator><pubDate>Sun, 17 Apr 2011 17:19:22 -0000</pubDate><guid>https://sourceforge.net6d30d2c58ffa8fa81051d3de8c77fa2479816f75</guid></item><item><title>&lt;pre&gt;--- v3 
+++ v4 
@@ -20,7 +20,27 @@
 After you have installed the larray library, make a text file containing:
 
     :::c++
+    #include &lt;larray/larray.hpp&gt;
+    #include &lt;iostream&gt;
     int main() {
+        larray&lt;double, dyn, 3&gt; mat;
+         larray&lt;double, dyn, 3&gt;::size_type size_type;
+        mat.resize(3,3);
+        for (size_type i=0; i!=3; i++)
+            for (size_type j=0; j!=3; j++)
+                mat(i,j) = i+j + i*j;
+        for (size_type i=0; i!=3; i++) {
+            for (size_type j=0; j!=3; j++)
+               std::cout &lt;&lt; mat(i,j) &lt;&lt; " ";
+            std::cout &lt;&lt; std::endl;
+        }
+        return 0;
     }
 
-and
+and compile using (debug build):
+
+gcc  main.cpp -o getting_starting_debug
+
+or (release build):
+gcc -03 -DNDEBUG main.cpp -o getting_starting_release
+
&lt;/pre&gt;</title><link>https://sourceforge.net/p/larray/wiki/GettingStarted/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -20,7 +20,27 @@
 After you have installed the larray library, make a text file containing:
 
     :::c++
+    #include &lt;larray/larray.hpp&gt;
+    #include &lt;iostream&gt;
     int main() {
+        larray&lt;double, dyn, 3&gt; mat;
+         larray&lt;double, dyn, 3&gt;::size_type size_type;
+        mat.resize(3,3);
+        for (size_type i=0; i!=3; i++)
+            for (size_type j=0; j!=3; j++)
+                mat(i,j) = i+j + i*j;
+        for (size_type i=0; i!=3; i++) {
+            for (size_type j=0; j!=3; j++)
+               std::cout &lt;&lt; mat(i,j) &lt;&lt; " ";
+            std::cout &lt;&lt; std::endl;
+        }
+        return 0;
     }
 
-and
+and compile using (debug build):
+
+gcc  main.cpp -o getting_starting_debug
+
+or (release build):
+gcc -03 -DNDEBUG main.cpp -o getting_starting_release
+
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nasos Iliopoulos</dc:creator><pubDate>Sun, 17 Apr 2011 17:18:28 -0000</pubDate><guid>https://sourceforge.net4f8f170f5a99999f9bdeab0018926dfbcf11695e</guid></item><item><title>&lt;pre&gt;--- v2 
+++ v3 
@@ -18,6 +18,7 @@
 Running a simple program
 ===
 After you have installed the larray library, make a text file containing:
+
     :::c++
     int main() {
     }
&lt;/pre&gt;</title><link>https://sourceforge.net/p/larray/wiki/GettingStarted/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -18,6 +18,7 @@
 Running a simple program
 ===
 After you have installed the larray library, make a text file containing:
+
     :::c++
     int main() {
     }
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nasos Iliopoulos</dc:creator><pubDate>Sun, 17 Apr 2011 17:13:22 -0000</pubDate><guid>https://sourceforge.net2a57581cb0f392ce95f33f1df151ec7d71a92939</guid></item><item><title>&lt;pre&gt;--- v1 
+++ v2 
@@ -15,3 +15,11 @@
 Standard installation
 ---
 
+Running a simple program
+===
+After you have installed the larray library, make a text file containing:
+    :::c++
+    int main() {
+    }
+
+and
&lt;/pre&gt;</title><link>https://sourceforge.net/p/larray/wiki/GettingStarted/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -15,3 +15,11 @@
 Standard installation
 ---
 
+Running a simple program
+===
+After you have installed the larray library, make a text file containing:
+    :::c++
+    int main() {
+    }
+
+and
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nasos Iliopoulos</dc:creator><pubDate>Sun, 17 Apr 2011 17:12:36 -0000</pubDate><guid>https://sourceforge.net9adc778739e399dbef046c0888563a69908b1fc5</guid></item><item><title>Introduction
========
larray is a template library, hence it doesn't need compilation to be used. Just copy the header files in a common path, or a local project folder and start using it. Alternatively scripts that install in common locations can be found in the trunk repository.

Downloading
===
The library headers can be found -here-, while the full distribution including larray development files (you need those only if you are modifying larray itself) and examples can be found -here-.

Installing
===

Using without system wide installation
---

Standard installation
---

</title><link>https://sourceforge.net/p/larray/wiki/GettingStarted/</link><description>Introduction
========
larray is a template library, hence it doesn't need compilation to be used. Just copy the header files in a common path, or a local project folder and start using it. Alternatively scripts that install in common locations can be found in the trunk repository.

Downloading
===
The library headers can be found -here-, while the full distribution including larray development files (you need those only if you are modifying larray itself) and examples can be found -here-.

Installing
===

Using without system wide installation
---

Standard installation
---

</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nasos Iliopoulos</dc:creator><pubDate>Sun, 17 Apr 2011 16:47:34 -0000</pubDate><guid>https://sourceforge.net7b73953cf6ed1946880b790d793927f6d50d1424</guid></item></channel></rss>