Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

change of number over time

Former Member
0 Kudos

is there any standard FM to calculate change of number over time .

where Z is my number.i have to find change of Z over a time period.

i.e I have to find dZ.

Any idea.

Thanks in advance.

Message was edited by:

Maya Vinothini

5 REPLIES 5

Former Member
0 Kudos

any idea to solve this issue..

Thanks..

Former Member
0 Kudos

DZ = Z2 - Z1???

Rob

JozsefSzikszai
Active Contributor
0 Kudos

can you be a bit more specifi? what number? how does it change?

Former Member
0 Kudos

Do u mean the differenciation operation??

if yes try to do this way.

do 10000 times.

  • calculate the change over the dependent variable in small intervals.

  • of independent variable.

dz = dz+ (d2-d1 ) " accumulate values

enddo.

dz = dz/10000. " divide by the number of times.

0 Kudos

thanks i will try