Is there a way to call LAPACK routines inside a stored procedure in C# (visual studio 2008)?.
If so, How would be the steps?.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have to compile LAPACK into a .dll and then call it from C#. I don’t know how SQL will fit in this, but I think that is a separate question.
In detail look at http://icl.cs.utk.edu/lapack-for-windows/lapack/ and in the end there are instructions on how to compile the sources. I make a static library for BLAS and a dynamic library for LAPACK. Then depending on which procedures you want to use, you will have to write managed wrapper functions that call the
.dll.