-2

I'm using Math.Net numerics ver 2.4.0 in my C# project, winform and after running the project and doing some parts it says:

find a source:ManagedLinearAlgebraProvider.Double original location: c:\TeamCity\buildAgent\work\d4ecde2945c804d6\src\Numerics\Algorithms\LinearAlgebra\ManagedLinearAlgebraProvider.Double.

and open a window to locate it when I press cancel the program continuous But entries of my matrices changes to NAN.

This is not the only file it wants, each time it needs a different file. What should I do?

I thought package is miss installed so I removed it and install it again but it didn't work.

1,2 and these are pictures of error.(Click on Blue 1 & 2)

bunNyBug
  • 146
  • 1
  • 2
  • 13
  • 1
    Please include relevant code parts. – Victor Zakharov Feb 10 '13 at 13:55
  • This is likely to be a problem with your Team City setup. Does the the project builds OK locally? – ChrisF Feb 10 '13 at 14:13
  • i think the pic is not readble ... is it?! what should I do please help! – bunNyBug Feb 10 '13 at 14:14
  • @ChrisF yes it builds and compute 4 or 5 times (it is a iterative procedure) but after that become NAN – bunNyBug Feb 10 '13 at 14:16
  • Your question is not clear. We are unable to read the error message display within Visual Studio. Verify the configuration of your `Team City` setup. For instance when did this stop working? What "parts" exactly were ran? – Security Hound Feb 10 '13 at 14:55
  • @Ramhound there is loop in my program in this loop some calculations are done on matrices... after 4-5 times that this loop ran, that error appears. I found that by running program line by line, if I run it normally it never ends and no error either. – bunNyBug Feb 11 '13 at 09:05
  • @bunNyBug - Post the loop. The picture is not readable. – Security Hound Feb 11 '13 at 12:08
  • @Ramhound I have tried to post new image but because someone have down voted this question, it says: Oops! Your edit couldn't be submitted because: You need at least 10 reputation to post images. any way by clicking on blue 2 at the end you can see the image in a new tab. – bunNyBug Feb 12 '13 at 07:57

1 Answers1

0

this happens when there is a logical problem with matrix operation , for example if a matrix is not a square matrix but in code you try to inverse it, this error appears.

my problem was in math of my program... and fixed finally.

bunNyBug
  • 146
  • 1
  • 2
  • 13