Skip to main content

numerics - Derivative of contour in ContourPlot


Sorry to bring this question up again, since there are many similar questions on the site. I use to think this is a easy job to do, because for the worst case I can follow the answers on this site. But after several tests, I found it is not as easy as I expected.



First is the contour plot:


Eq = (Sinh[
b] (80 - 80 Cos[b] + 8 b^4 Cos[b] - 8 b^4 Cos[b (1 - 2 xm)] +
10 b Sin[b] + 32 b^3 Sin[b] - 10 b Cosh[b] Sin[b] +
20 b Cosh[b/2]^2 (-1 + 2 Cosh[2 b xm]) Sin[b] -
20 b Sin[b (1 - 2 xm)] - 20 b Sin[2 b xm] -
20 b Cos[b] Sinh[b] + 20 b Cos[b (1 - 2 xm)] Sinh[b] -
80 Sin[b] Sinh[b] -
160 b Cosh[b/2] Sin[b/2] Sin[b xm] Sinh[b xm] +
20 b Sinh[2 b xm] - 20 b Cos[b] Sinh[2 b xm] +

8 b^4 Sin[b] Sinh[2 b xm] -
20 b Sin[b] Sinh[b] Sinh[2 b xm]) +
Cosh[b] (20 b - 50 b Cos[b] + 30 b Cos[b (1 - 2 xm)] +
10 b Cos[b] Cosh[b] - 10 b Cos[b (1 - 2 xm)] Cosh[b] -
120 Sin[b] + 8 b^4 Sin[b] + 40 Cosh[b] Sin[b] -
2 b Cosh[b xm]^2 (10 - 10 Cos[b] + 4 b^3 Sin[b]) +
20 b Sin[b] Sinh[b] - 20 b Cosh[2 b xm] Sin[b] Sinh[b] +
160 b Sin[b/2] Sin[b xm] Sinh[b/2] Sinh[b xm] -
20 b Sinh[b xm]^2 + 20 b Cos[b] Sinh[b xm]^2 -
8 b^4 Sin[b] Sinh[b xm]^2 - 30 b Sin[b] Sinh[2 b xm] +

10 b Cosh[b] Sin[b] Sinh[2 b xm] +
20 Cosh[b/2]^2 (b Cos[b] - b Cos[b (1 - 2 xm)] + 4 Sin[b] +
b Sin[b] Sinh[2 b xm])));

p = ContourPlot[Eq == 0, {xm, 0, 1/2}, {b, 2, 4}, PlotPoints -> 100]

Following suggestion from Mr.Wizard♦ in https://mathematica.stackexchange.com/a/31169/11867, I set PlotPoints to 100.


Then, extract the points from the plot:


lines = Cases[p, _Line, Infinity];
points = p[[1, 1]];

l1 = Map[Part[points, #] &, lines[[1, 1]]];

1


I think the curve is pretty smooth, so I use Interpolation to interpolate the points:


Plot[Interpolation[l1]'[x], {x, 0, 0.5}]

2


It is clear jitters in the data cause the derivative not smooth. Therefore, following stevenvh's advice in (http : // mathematica.stackexchange.com/a/10987/11867), I reduce the InterpolationOrder to 2 and 1.


Plot[Interpolation[l1, InterpolationOrder -> 2]'[x], {x, 0, 0.5}]
Plot[Interpolation[l1, InterpolationOrder -> 1]'[x], {x, 0, 0.5}]


3 4


It is better obviously, but not ideal. I think answer from chris make sense, BSpline should be a better solution, but not for derivative.


bs = BSplineFunction[l1];
ParametricPlot[bs[t], {t, 0, 1}]

5


ParametricPlot[bs'[t], {t, 0, 1}]

6



After that, I recall s.s.o mentioned Wavelet can be used to smooth the data in https://mathematica.stackexchange.com/a/65590/11867, but I suddenly realize that the data points are not evenly sampled. Therefore, I try to use other smooth method, like MovingAverage.


Interpolation[MovingAverage[l1, 51], InterpolationOrder -> 2]
Plot[%'[x], {x, 0, 1/2}]

7


This is pretty close to smooth curve, but not ideal. Then, I think MovingMedian may remove the jitter noise:


Interpolation[MovingMedian[l1, 15], InterpolationOrder -> 2]
Plot[%'[x], {x, 0, 1/2}]

8



But the answer is no.


I would like to narrow this problem to processing the data points in ContourPlot, because for this problem the derivative actually can be obtained through the analytical equation. I am curious about how to solve it by processing the data points in the figure.


Summary


I would not like to call this a conclusion, because I think there may be a better solution out there. Untill now, we have mainly two possible solutions for this problem.


Low pass filter based methods


@Jens and @Michael E2 both provide a solution based on low pass filter. It should be noted LowpassFilter and DifferentiatorFilter support only even sampled data for Mathematica lower than v10.1:



LowpassFilter currently only supports regularly sampled time series \ inputs. Use TimeSeriesResample or TemporalRegularity to make the \ input regularly sampled. >>



You can use code like following:



lp = LowpassFilter[TimeSeries@TimeSeriesResample[l1, 0.001], 0.5];

Note: the cut-off frequency in both filters will reduce the absolute value of derivative due to filter process. You should try several cut-off frequencies and make trade-off between smoothness and the reduction.


Moreover, I find MovingAverage may also provide smooth result if you increase PlotPoints to 300. The following command provides a decent result:


Interpolation[MovingAverage[l1, 30], InterpolationOrder -> 2];
Plot[%'[x], {x, 0, 1/2}]

9


Note: MovingAverage is also one kind of low-pass filter, and thus has the same problem as the previous two methods. However, it is fast and easy to understand.


Spline based methods



There are two different implementations in the answer of @Alexey Popkov.


The first one is not strictly a spline based method, the idea is interpolate the data in sub-segements, and then fit the data with NonlinearModelFit.


The second one is based on QuantileRegression, which can be downloaded from here. The performance of the package looks quite decent.


BTW, the correct way to use BSplineFunction is shown in the comment by @Michael E2 as


dbs[t_?NumericQ] := First@Ratios[bs'[t]]; 
xbs[t_?NumericQ] :=
First@bs[t]; ParametricPlot[{xbs[t], dbs[t]}, {t, 0, 1},
AspectRatio -> 1/GoldenRatio]

The above codes produce following figure for PlotPoints->300



10


Other thoughts


Piecewise polynomial should be a candidate for this problem, but as I commented in answer of @Alexey Popkov, implementation from Piecewise Polynomial Interpolation by @Michael E2 does not provide an ideal result for this problem. loess in R handles problems similar to this one pretty well. I find one implementation here, but I cannot make it work yet.


Currently, the best choices for this problem are QuantileRegression, LowpassFilter and MovingAverage.




Comments

Popular posts from this blog

plotting - How to draw lines between specified dots on ListPlot?

I would like to create a plot where I have unconnected dots and some connected. So far, I have figured out how to draw the dots. My code is the following: ListPlot[{{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4,13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full] I have thought using ListLinePlot command, but I don't know how to specify to the command to draw only selected lines between the dots. Do have any suggestions/hints on how to do that? Thank you. Answer One possibility would be to use Epilog with Line : ListPlot[ {{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4, 13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full, Epilog -> { Line[ ...

equation solving - Invert and fit implicitly defined curve

I need to fit an implicitly defined curve. I thought I could get some data out of Solve , and then using FindFit . Therefore, I would like to find the relation the parametric curve defined by $F(x,y)=0$: Solve[-(1/2) + 1/2 (0.41202 BesselK[0, 0.1 Sqrt[x^2 + y^2]] + (0.101483 x BesselK[1, 0.1 Sqrt[x^2 + y^2]])/Sqrt[x^2 + y^2]) == 0, y] But I can't get an output: Solve was unable to solve the system with inexact coefficients or the system obtained by direct rationalization of inexact numbers present in the system. Since many of the methods used by Solve require exact input, providing Solve with an exact version of the system may help. >> Edit: In particular, I would like to fit the data coming from the curve with the expression of another curve, and not with a function $f(x)$. In particular, since this clearly looks like a cardioid , I would like it to fit to something like it. What other strategies could I try?

dynamic - How can I make a clickable ArrayPlot that returns input?

I would like to create a dynamic ArrayPlot so that the rectangles, when clicked, provide the input. Can I use ArrayPlot for this? Or is there something else I should have to use? Answer ArrayPlot is much more than just a simple array like Grid : it represents a ranged 2D dataset, and its visualization can be finetuned by options like DataReversed and DataRange . These features make it quite complicated to reproduce the same layout and order with Grid . Here I offer AnnotatedArrayPlot which comes in handy when your dataset is more than just a flat 2D array. The dynamic interface allows highlighting individual cells and possibly interacting with them. AnnotatedArrayPlot works the same way as ArrayPlot and accepts the same options plus Enabled , HighlightCoordinates , HighlightStyle and HighlightElementFunction . data = {{Missing["HasSomeMoreData"], GrayLevel[ 1], {RGBColor[0, 1, 1], RGBColor[0, 0, 1], GrayLevel[1]}, RGBColor[0, 1, 0]}, {GrayLevel[0], GrayLevel...