How can I do some more advanced function. I see that I can do function with public double myFunction(double myParameter) but what if I do want to derive that function?
|
|
|||||||
|
|
|
You can't calculate the exact derivative of a function using a computer program (unless you're doing symbolic math... but that's another, way more complicated, topic). There are several approaches to computing a numerical derivative of a function. The simplest is the centered three-point method:
Another approach is the centered five-point method:
Another topic is how to implement this using C#. First, you need a delegate that represents a function that maps a subset of the real numbers onto a another subset of the real numbers:
Then, you need a routing that evaluates the derivative:
If you want an object-oriented implementation, you should create the following classes:
|
||
|
|
|
|
If you're thinking of symbolic manipulation of formulae then you're better off doing your derivations in languages 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 |
|||
|
|
|
If you have written the function, it's already been derived. And given that it's an int function, I'll assume you don't mean the calculus definition of "derive". |
||
|
|
Are you thinking of Lambda Expressions? Basically you can pass a function into a function. So think of a Sort on an object. Depending on the nature of the object would help determine how the objects are sorted. But you can still create a generic sort function then pass in how to compare objects. |
||
|
|
