Tagged Questions

1
vote
6answers
156 views

algorithm to find derivative

I'm writing program in Python and I need to find the derivative of a function (a function expressed as string). For example: x^2+3*x Its derivative is: 2*x+3 Are there any scripts available, or is …
2
votes
4answers
165 views

What does Front Office/Back Office programmer position mean?

To follow up my previous question, I’ve delve a bit more into the “financial derivative trading” world in trying to understand what is means for programmers and how it is like working as a programmer …
0
votes
2answers
48 views

Reducing calculation time for derivative blocks in SimMechanics

I have a program in SimMechanics that uses 6 derivative blocks (du/dt). It takes about 24 hours to do 10 secs of simulation. Is there any way to reduce the calculation time of the Simulink derivative …
1
vote
2answers
144 views

Calculate the derivative ([i] - [i - 1]) in Ruby.

Trivial using a for loop or each_with_index, just wondering if there was a better way of doing it using Ruby syntax. I need to create a new array that is the derivative of the source array, eg: …
4
votes
10answers
725 views

Compute a derivative using discrete methods

I am looking for a method to compute a derivate using a discrete and fast method. Since now I do not know the type of equation I have, I am looking for discrete methods analog to the ones that we can …