New Post: LUFactor
Hi, I'm trying to use LUFactor with complex matrices in my algoritm but i have this error:"The array arguments must have the same length." I've checked a hundred of times but i can't find where is the...
View ArticleNew Post: LUFactor
Hi, Thanks, it works perfectly! Can i use sparse matrices with LUfactor & LUsolvefactored? I read the documentation but i cant find nothing about this. Thanks again for tour help and tour great...
View ArticleNew Post: LUFactor
No, only dense matrices. One of these days we'll add support for sparse matrices, but probably for only one type of sparse layout.
View ArticleNew Post: Quality of XML comments.
Hi Christophe, Thanks for understanding and following-up with a detailed response. I'm not a mathematician, just a man with a problem to solve, and so I can't comment on your linear algebra points...
View ArticleNew Post: Use of MathNetNumerics in Visual basic 6.0 application
Dear all, I am a new member of your community and I am very interested in using Math.Net Numerics in a Visual Basic 6.0 application. Unfortunately, I cannot register the MathNet.Numerics.dll by using...
View ArticleNew Post: Use of MathNetNumerics in Visual basic 6.0 application
Hi, Math.NET Numerics does not support COM directly. In fact, for large parts it cannot possibly support COM due to its nature. However, what may work in your case is to expose the functionality you...
View ArticleNew Post: Use of MathNetNumerics in Visual basic 6.0 application
Hi Christoph, thanks for your reply! Well, I assumed when I would get an asnwer that I get this one. I also figured out that if it is not possibly to operate with the library to write a kind of wrapper...
View ArticleNew Post: Use of MathNetNumerics in Visual basic 6.0 application
Hi, Unfortunately, linear algebra and the Matrix type in particular is where I suspect direct COM would not work well if at all. Although note that while I do have used VB6 and COM quite intensively in...
View ArticleNew Post: Embed Native MKL Libs to the executable(.exe)
Hi. I've been developing an app which uses Math.NET Numeric Libs with native MKL. I've added both DLLs (MathNet.Numerics.MKL.dll and libiomp5md.dll) and the app will actually run if they are selected...
View ArticleNew Post: Densematrix overflow exception and outofmemory exception
Hi all, I was trying to work with very large matrices in C# using Math.Net library when I met the following exceptions.private static DenseMatrix OutOfMemoryTest() { var testMat = new...
View ArticleNew Post: Embed Native MKL Libs to the executable(.exe)
Hi, You cannot embed the two DLL's. You'll need to either copy them along with the .exe or place them somewhere in your PATH. Another option is to use an .exe packager/bundler. This will create an new...
View ArticleNew Post: Densematrix overflow exception and outofmemory exception
Hi, I believe that maximum size of a .NET object is 2GB (though there is an option in the 64-bit version of .NET 4.5 to increase that size - I've never used it). The first two versions above put you...
View ArticleNew Post: Densematrix overflow exception and outofmemory exception
cuda wrote: Hi, I believe that max maximum size of a .NET object is 2GB (though there is an option in the 64-bit version of .NET 4,5 to increase that size - I've never used it). The first two versions...
View ArticleNew Post: Embed Native MKL Libs to the executable(.exe)
Hi Marcus. Yes, I tried some bundlers/packagers for .Net before actually try to pack them as Embedded Resources, no success with those two files though, all of the bundlers return errors while trying...
View ArticleNew Post: Embed Native MKL Libs to the executable(.exe)
Hi Nuno, Which packager did you try? Make sure it is not .NET only one. I just tested Enigma Virtual Box and it worked fine with simple .NET command line app and the MKL DLLs. Regards, Marcus
View ArticleNew Post: Embed Native MKL Libs to the executable(.exe)
Do you have to "bundle" to app into a single .exe? or are you doing so since you cannot get the app to run with the DLLs in the same directory as the .exe? Also, how are you deploying the app? Thanks,...
View ArticleNew Post: Embed Native MKL Libs to the executable(.exe)
Good Morning Marcus. You are right, Enigma Virtual Box actually works, thanks! I had already tried with ILMerge (from Microsoft Research), another weird repack of ILMerge supposed to correct some bugs,...
View ArticleNew Post: Embed Native MKL Libs to the executable(.exe)
Good Morning Marcus. You are right, Enigma Virtual Box actually works, thanks! I had already tried with ILMerge (from Microsoft Research), another weird repack of ILMerge supposed to correct some bugs,...
View ArticleNew Post: Embed Native MKL Libs to the executable(.exe)
EDIT: Your question about the deploying has anything to do with referencing? I was planning on mention it in the "About Box" No, I was just wondering how the DLLs were getting installed,
View Article