Is there a way to comunicate a numeric method library, that can exploit all .net's (numerical methods called by .net that does SQL Server things) habilities?,

  • What library do you recomend, maybe using MATLAB, R?
  • How to comunicate SQL Server and .net with such library or libraries?
  • Do you have an example?
  • What steps must be followed to make the link between numerical libraries, .net and SQL Server
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted
+50

If you like to use Matlab as a numerical library, but drive data access and control execution from c# I would recommend the following approach.

Use the COM Automation Server in Matlab by adding a reference to the MATLAB Application Type Library (Matlab.Application) COM object in the add reference dialog in Visual Studio.

Call your Matlab scripts from c#, see the Matlab documentation for an example.

Fetch data from the SQL Server using ADO.NET, Linq2Sql or Entity Framework and feed that into Matlab through the COM-object created above. When the calculations are completed read out the data and store the result in the database again.

To process things in the background you can use the BackgroundWorker in c#.

link|improve this answer
Yes in fact following your example... I would like to paralelize some things, for example: c# reads SQL Server database, then c#calls MATLAB using threads (each thread uses MATLAB's habilities to compute something) then after the termination of each thread c# does something like store the result in SQL Server again, Do you have some sample code? – cMinor Mar 12 '11 at 21:20
No, I have not used Matlab since university, but there seems to be a bunch of simple examples of how to get started on the Matlab documentation. I assume you know how to perform your numerical calculations in Matlab. I updated the answer with links to LINQ2SQL and BackgroundWorker. – Albin Sunnanbo Mar 12 '11 at 21:29
I have used MATLAB and SQL Server's Stored procedures, but not to much c# and VB .net could you please post some c# sample code?. So the idea is clearer (I am reading the BackgroundWorker...). – cMinor Mar 12 '11 at 21:32
What if the server if x64? I've had problems with some COM stuff here... – gbn Mar 14 '11 at 5:47
feedback

If you use a CLR function, it has access to all (I think) .net maths libraries.

This should include 3rd party libraries too if they have a .net component

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.