Mathematical function differentiation with C#?

后端 未结 5 1795
旧时难觅i
旧时难觅i 2020-12-05 03:57

I see that I can declare a function with (say)

public double Function(double parameter)

but what if I do want to take the derivative of tha

5条回答
  •  無奈伤痛
    2020-12-05 04:16

    If you're thinking of symbolic manipulation of formulae then you're better off doing your derivations in languages like Maple or Mathematica. They're designed for symbolic computation.

    EDIT: If Maple and Mathematica are too expensive for you then there are other options. Wikipedia has a fairly complete listing of computer algebra packages. http://en.wikipedia.org/wiki/Comparison_of_computer_algebra_systems

提交回复
热议问题