Hey so I\'m reading this article by Chris Hecker where he has an image of a Parabola surrounded by the a vector field of it\'s derivative:
We want to study the error in the difference approximation for forward difference and central difference, tabulate the error for 开发者_如何学运维h=[1.E-3 1.E-4 1.E-5 1.E-6 1.E-7 1.E-8 1.E-9 1.E-10 1.
I\'m trying to implement a feed-forward backpropagating autoencoder (training with gradient descent) and wanted to verify that I\'m calculating the gradient correctly. This tutorial suggests calculati
I am trying to find second derivative of a function, but while initializing my symbols i am getting the following error:
I am currently writing a calculator application. I am trying to write a derivative estimator into it. The formula below is a simple way to do it. Normally on paper you would use the smallest h possibl
I\'m working on an algorithm to find peaks in a List object. I\'d thought up what I thought was a good (or good enough) algorithm for doing this by looking at a point and it\'s neighbors and, if it wa
I have a stream of data that trends over time.How do I determine the rate of change usingC#? It\'s been a long time since calculus class, but now is the 开发者_如何转开发first time I actually need it
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
I am currently implementing a 3D Perlin noise bump mapping using Shader Model 4 (DirectX 10 HLSL). Generating the noise itself is not a big problem (there are tons of tutorials and codes around) but w
Savitzky-Golay smoothing filter can be used to calculate the coefficients so as to calculate the smoothed y-values by applying the coefficients to the adjacent values. The smoothed curve looks great.