Is there a way to use Armadillo's "C++ linear algebra library" code which has lapack in a C# project?

Could you please post a simple example...

I was thinking to get a .dll and import it to C# project, is this feasible or is there another way to go?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can use the PInvoke feature of .NET (platform invoke) to call code in native DLLs from your managed code.

Depending on the nature of the entry points in your native DLL you might consider adding your own wrapping layer which uses more PInvoke-friendly data types.

link|improve this answer
feedback

Do you have the source? If so can you compile it in managed C++? If it's just mathematical functions I can't see it being a huge job to do that.

Once you've done that it's a managed assembly like any other - the source language is irrelevant.

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.