Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
382 views

A curious Plot with IntegerPart[x]

Just found the following while debugging a problem. Mathematica is calculating the derivative of IntegerPart[x] in some odd way: Plot[{IntegerPart@u, D[IntegerPart[x], x] /.x -> u}, {u, 0, ...
9
votes
1answer
116 views

Simplest way to determine if class x is derived from class y? (c#)

Is this the simplest way to determine if foo is the same or derived from type T bool Derives<T>(object foo) { return foo is T; } and an exact match would be bool ExactMatch<T>(object ...
7
votes
3answers
1k views

derivative of a function

I am using D to get derivatives of a function. However, R does not simplify the expression when returning the derivative. I need to figure out if a function has a derivative that can be expressed ...
6
votes
3answers
267 views

Nullability (Regular Expressions)

In Brzozowski's "Derivatives of Regular Expressions" and elsewhere, the function δ(R) returning λ if a R is nullable, and ∅ otherwise, includes clauses such as the following: δ(R1 + R2) = δ(R1) + ...
5
votes
10answers
4k 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 ...
3
votes
7answers
1k views

Derivative Calculator

I'm interested in building a derivative calculator. I've racked my brains over solving the problem, but I haven't found a right solution at all. May you have a hint how to start? Thanks I'm sorry! I ...
2
votes
3answers
49 views

Get the derivative of a function_handle in MATLAB

Is it possible to get the derivative of a function_handle as a other function_handle? Like: fun1 = @(x) x^2; % do that ... disp(fun2); @(x) x*2 I know how to find the derivative of a ...
2
votes
1answer
121 views

Automatic partial derivation of integrals of polynoms

I've been searching for a C/C++ library that does symbolic differantation and integrals of polynoms, but haven't found one that suits my needs. I'm afraid that the problem is that I'm not using the ...
2
votes
2answers
178 views

Sorting a formula in Mathematica according to level of derivative or exponential

I have an impedance equation which I have transferred to Mathematica in hopes to simplify it. It is representative of a circuit schematic, and the circuit impedance (Z, from V = iZ) is a large ...
2
votes
2answers
69 views

Question about the LGPL

I was wondering if it was legal/not frowned upon to base enhancements to one LGPL library off of the functionality of another LGPL library. Note that because of the method of implementation, the ...
2
votes
0answers
353 views

3D Perlin noise analytical derivative

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 ...
2
votes
6answers
329 views

Derivative of a program

Let us assume you can represent a program as mathematical function, that's possible. How does the program representation of the first derivative of that function look like? Is there a way to transform ...
2
votes
6answers
1k 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
3k 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 ...
2
votes
2answers
413 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: ...
1
vote
0answers
25 views

Symbolic functions in matlab

I'm sorry if I'm not formerly correct; I would like to work with symbolic functions, like i.e. x(t) without the need to actually define x. This may be useful because sometimes you'll have functions ...
1
vote
1answer
109 views

Explicit formula versus symbolic derivatives in R

I would like to evaluate higher order derivatives of some function f in R. Two possibilities are available to me. Either I determine a general expression for f(k), the k-th derivative of f (which I ...
1
vote
1answer
81 views

Matlab - error in difference approximation

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.E-11 1.E-12 ...
1
vote
0answers
163 views

Checking the gradient when doing gradient descent

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 calculating ...
1
vote
1answer
72 views

Taking a second derivative in FFTW3

I have tested my code for some real functions using a forward FFT and IFFT (normalized the result), this works fine. I would, however, like to take a second derivative of a real function. For ...
1
vote
6answers
412 views

Java estimate a derivative at a point

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 ...
1
vote
1answer
267 views

C# - Finding Peaks within a Given Width via Quadratic Fit

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 was a ...
1
vote
3answers
528 views

How does one calculate the rate of change (?derivatives?) in C#?

I have a stream of data that trends over time. How do I determine the rate of change using C#? It's been a long time since calculus class, but now is the first time I actually need it (in 15 ...
1
vote
3answers
848 views

how to use Savitzky-Golay smooth coefficient to calculate derivatives

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. ...
1
vote
0answers
90 views

Derivative Code Compilers

I would like to ask if some one can explain to me what are the differences of syntax-directed tangent-linear code and adjoint code. It is related to derivation of code with a compiler. I understand ...
1
vote
3answers
388 views

Java and junit: derivative of polynomial method testing issue

im trying to finish up my junit testing for finding the derivative of a polynomial method and im having some trouble making it work. here is the method: public Polynomial derivative() { ...
0
votes
0answers
13 views

Derivative calculation [migrated]

I have a series of data (single array). If I take this data and plot it, I can see that there are multiple peaks. However If I zoom in to a section of data, I see that there is substantial noise. I ...
0
votes
1answer
52 views

Relative Minimum via Derivative using R

I am trying to get the value of x that would minimize my equation y. I would like to use R. The equation is: y= [(a-bx)^2] / {[2bx /(1+x)]+c} where a, b, c are all constant, but different to one ...
0
votes
1answer
59 views

Prolog compact?

I have a problem, I need to compact a derivative result like this: 0*x*x + 2*(1*x + x*1) =====> example: 0+2*(2*x) =====> 0+2*4*x====>8*x Is it possible? Thanks for your help. Regards, ...
0
votes
1answer
47 views

How to get a vector field that maps the slopes of an equation

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: However he never mentions how exactly he got the vector ...
0
votes
0answers
76 views

Automatically initialize all derived classes in C++ [closed]

I'm designing a small graphics library in C++ with openGL and shaders. I'm going to have several functions (methods of classes derived from a 'drawable' class) that draw different primitives. Examples ...
0
votes
1answer
82 views

Licensing derivative works (CMS plugin) with Apache 2 License

I downloaded a plugin for a CMS that I use, but felt that it didn't have the exact functionality I wanted. Rather than writing a new plugin from scratch, I heavily modified the existing plugin. The ...
0
votes
1answer
111 views

Calculating derivative and integration using matlab

I am trying to find second derivative of a function, but while initializing my symbols i am getting the following error: Error using ==> subsindex Function 'subsindex' is not defined for values of ...
0
votes
2answers
266 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
votes
2answers
350 views

How to write derivative function? [closed]

I am trying to do my homework. I have to write method of derivative. I am thinking to write a function of derivative. (It is Scala) Please give me a hint here. Thank you