Questions tagged [ilnumerics]

ILNumerics is a high performance math library for applications

ILNumerics is a high performance math library for applications. It simplifies the implementation of all kinds of numerical algorithms in convenient, familiar syntax - optimized to the speed of C and FORTRAN.

The library provides:

  • Development tools for Visual Studio
  • Visualization engine
  • Computing engine

.NET is well known for its efficient and automatic garbage collection. However, while being sufficient for most business scenarios, mathematical applications bring more specific requirements to the memory management. Without special care, the runtime - in particular, the garbage collector - would cause a serious performance hit even for middle sized problems. Therefore, ILNumerics introduces a sophisticated memory management which saves the time in GC and therefore roughly doubles the execution speed. This is achieved by:

  • Value semantics for function parameters.
  • After a function has returned, all garbage is cleaned up immediately.
  • Memory is recycled for subsequent array allocations.
  • Lazy array copies - using memory on write access only.
  • Array operations are done in-place whenever possible.

(all text taken from the website)

230 questions
-1
votes
1 answer

How to Access correctly to Positions Property in a LinePlot with Ilnumerics?

i would like to access to the coordinate information in a LinePlot, i wanto to use the Property LinePlot.Positions as show in the following code: using System; using System.Collections.Generic; using System.Text; using ILNumerics.Data; using…
DonMiguelSanchez
  • 376
  • 3
  • 15
-1
votes
1 answer

Who has ILNumerics community edition?

Now,the ILNumerics is a commercial version now. but it has a community edition before.where can I get a open-source community edition ?
Daniel Lu
  • 9
  • 2
-1
votes
1 answer

Problems with ILNumerics plot drawing in OpenGL

I am using ILNumerics. I just tested some simple examples from the ILNumerics website. If I choose to use the GDI renderer in the properties panel of the ILPanel control it works fine. If I choose the OpenGL renderer the scene is plotted wrongly,…
-2
votes
2 answers

Error while opening csv file in C#

I'm stuck here while opening and reading csv file in c# program. Ive just started working upon ILNumerics to display 3D matrix graph, but the Exception rises with "Could not find file 'C:\Users\asd\Documents\Visual Studio…
Mikka
  • 55
  • 1
  • 7
-3
votes
1 answer

I want to use FFT function from ILNumerics Library (open source) exception raised

I Want to use FFT function from ILNumerics Library but its raising an exception. What could probably be wrong. I am using VB.NET (VB EXpress 2010) Imports System.Math Imports OpenTK Imports ILNumerics.ILMath Imports…
1 2 3
15
16