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
vote
1 answer

ILImageSCPlot always timeout

In an Imageplot always Timeout is printed. Example: data = ILSpecialData.waterfallf(25, 100); var ilmsc = new ILImageSCPlot(data); var ilp = new ILPlotCube { ilmsc }; ilPanel1.Scene.Add(new ILScene { ilp…
Pete
  • 673
  • 5
  • 8
1
vote
1 answer

Get double[,] from an ILRetArray?

How can I get an System.Array (double[,]) from an ILRetArray with 2 dimensions? There is an Method ExportValues, but the result is double[].
Pete
  • 673
  • 5
  • 8
1
vote
1 answer

Read data with ILNumerics.IO.HDF5

I try ILNumerics.IO.HDF5 and can not read the following data: Variable length strings in Datasets and Attributes. Datasets with variable length arrays. Each cell contain a array of numbers, which are histograms. Compound data, ie. Datasets with…
Pete
  • 673
  • 5
  • 8
1
vote
0 answers

Plotting temperature measuement

I have temperature data that I would like to plot in i surface plot. I was thinking to put the data together in a matrix where the x-axis is time, the y-axis is a postion and the z-axis would be the data at that x-y-position (i.e. height, or in this…
Rickard N
  • 408
  • 3
  • 8
1
vote
2 answers

Visualize large data written by ILNumerics API using HDFView?

I write my application data as H5Datasets using ILNumerics api. With small size data (5 X 4098), I am able to visualize the data using HDFView(version 2.9). But for the data of size 30 x4098 and more, HDFView crashes silently as I try to look at…
Neelima
  • 243
  • 1
  • 8
1
vote
0 answers

ILNumerics return ILArray .a property clarification

I have another question for the IL sub-community. I am finding my way through ILArrays and similar, but I would like another clarification. In the example reported on the ILNumerics website, we have (simplifying what is not needed) public class…
1
vote
1 answer

ILNumerics: ILArray as instance variables;

I am using ILNumerics to represent some time series. Ideally I would like to have all data incapsulated a la object oriented and, therefore, to use instance variables and instance methods to process such variables. I have several questions, but all…
1
vote
2 answers

Color Ranges in ILNumerics Surface Plot

I am using ILNumerics to generate a surface plot. I want to use a flat shaded color map (i.e. color ranges) instead of a smooth shaded color map (i.e. each pixel has it's own color). Is this possible with ILNumerics? Example of Flat-Shaded surface…
JRS
  • 1,438
  • 2
  • 16
  • 26
1
vote
1 answer

ILLinePlot color depending on Y-value?

It is common pratice to let 3D surfaces have different colors in different areas depending on the Z-value at the particular point. In order to achieve that I simply call the mehtod UpdateColormapped on my ILSurface-object. I would like to do the…
arnold_w
  • 59
  • 9
1
vote
1 answer

ILNumerics - Visual Studio integration

I have been trying to integrate ILNumerics with VS, following the instructions on the ILNumerics website. I am using VS-2013-Express-Desktop under Windows 8.1 with ILNumerics Trial Edition. I am interested in acquiring the Standard Edition, after…
1
vote
1 answer

how to draw surface with polar coordinate in C#

I have many points with teta,phy,r. I want to draw 3D surface in visual C#. I usually use ILNumerics. I can draw 3D surface by cartesian coordinate but by polar ... I have windows form application. please help me.
sharafi
  • 531
  • 1
  • 7
  • 19
1
vote
1 answer

ILScene does not update in WindowsFormsHost

I am attempting to use an ILLinePlot to plot live data in a WPF app using WindowsFormsHost. I have made a start based on these two SO questions: ILScene in WindowsFormsHost & ILNumeric continuous rendering plots. My code is: XAML:
1
vote
0 answers

How to use colors as 4th dimension

Original Post: i got a huge list of points. Every point consists of four values. The first three values are X, Y and Z. The last one i need to use as the color of the point. In Matlab the "scatter" function does it for me. There it is very easy, i…
Wayn0r
  • 27
  • 5
1
vote
1 answer

Antialiasing in ILNumerics

In ILNumerics, how to use the anti-aliasing? I can't find how to use it in the tutorial. My graphs are like this: I need smoother lines as this graphs (that we build with canvas in WPF): Update: I try the solution. Here is the code that I…
ehmind
  • 265
  • 3
  • 10
1
vote
1 answer

How to add a Colorbar for Custom Objects in ILNumerics?

I want to use a colorbar with custom objects. The objects are colored according to a specific colormap. I want to show this colormap in a colorbar at runtime. I already tried adding it to scene by: ILColorbar cb = new ILColorbar(); …
ehmind
  • 265
  • 3
  • 10