Main Page

From ILNumerics.Net software wiki

Jump to: navigation, search

Welcome to the ILNumerics.Net software wiki

This wiki is used to collect software snippets for ILNumerics.Net. If you found a usefull piece of code, worked around a limitation or just want to save the wheel you just invented for later references - post it here for you and for others.

This wiki has been installed shortly. Please help setting it up and bring it on its way! Your work and contributions are appreciated. Visit the list of available categories, the list of available articles or the complete list of special pages.

Getting started

 Note: it currently is not possible to share account data between ILNumerics.Net forum and wiki.  
  • Create new snippets:
    • Navigate to the page title you think is appropriate for your snippet. Use the URL for this or search for articles.
    • If it does not exist yet, create it
    • If it exist, edit it.

The syntax is well known from other mediawiki projects (and Wikipedia). Tutorials on how to write articles and/or snippets are found on the mediawiki homepage: [1]

Quick start: code snippets

basically you can place your code in the edit section of each page. Enclose it with the following tags:

<geshi lang=csharp lines=1>
public ILArray<double> test<T>(ILArray<T> S) {
   // bla
   return ILMath.rand(2,1,5,12);   
}
</geshi>

... will result in:

  1. public ILArray<double> test<T>(ILArray<T> S) {
  2. // bla
  3. return ILMath.rand(2,1,5,12);
  4. }

All syntax elements and a list of available languages can be found on this site: [2]