I have a list of data points. From this list I generate a plot using ListCountourPlot. Mathematica interpolates multiple Countour lines.
I want to extract the points $(d,b)$ for a specific line which is the line $\omega_i = 0$ (red line).
How can I do that?
Mathematica code:
j132 = Import["/home/mateus/Desktop/LaminarSeparationBubble/para_loop_20.dat"];
newStyle[x_] := x /. l_Line :> Sequence[Opacity[1], Thick, Red, l]
lista131 =
Table[{j132[[i, 2]], j132[[i, 1]], j132[[i, 9]]}, {i, 1,
Length[j132]}];
ListContourPlot[lista131, PlotLegends -> Automatic, Contours -> 30,
FrameLabel -> {"b", "d", "ωi"}, PlotRange -> All,
ImageSize -> 400] /. Tooltip[x_, 0] :> Tooltip[newStyle[x], 0]

para_loop_20.dat; you've already been told where to post it. – J. M.'s missing motivation Aug 21 '17 at 19:23