looking for good site/link for math example in C#

  • Thread starter Thread starter MIB426
  • Start date Start date
M

MIB426

Hi
I will need to write a lot of math code, such as polynormial, Normal
Distribution, Geometry, matrix....etc (anything to do with math) in
C#.

if you know any good links please let me know.

thanks all

*-----------------------*
Posted at:
www.GroupSrv.com
*-----------------------*
 
MIB426 said:
Hi
I will need to write a lot of math code, such as polynormial, Normal
Distribution, Geometry, matrix....etc (anything to do with math) in
C#.

Have you considered not writing the code and using existing code and Fortran
for .NET?
 
u mean third party code? (in dll?)

i will give it a try first...i think to use third party code in my
last option

thanks

*-----------------------*
Posted at:
www.GroupSrv.com
*-----------------------*
 
most of the math problems you are asking about are difficult to write and
debug. In addition, even a tiny error can create huge consequences for
users of the routines, since math has a way of magnifying an error.

Small bugs in math packages have caused havoc before. Don't be a fool and
turn down the chance to use code that you KNOW works.

Use the third party code.

Writing code that someone else already wrote and debugged is for students
and fools.

--- Nick
 
Back
Top