jv13

Results 4 comments of jv13

``` python import numpy as np import PyDDE.pydde as dde d = 5e-3 nn = 20 tmin = 0. tmax = 1e-2 def ddegrad(s, c, t): lags = np.zeros(nn) if...

I just figured out that using zero in the last argument of dd.pastvalue, that is ``` python dde.pastvalue(ii,t-c[0],0) ``` does not cause any error.Is it ok to use it that...

I will be back in office next week and only then I can test the proposed solutions. I'll report the outcome here.

What Ben explained is correct. The 3rd argument indexes the different lags, so setting it to zero (I use only one lag) does **normally** not cause any segfaults. **However**, if...