I have made Contour Plot for a lot of data, like this
ListContourPlot[ data, DataRange -> {{yMin, yMax}, {xMin, xMax}},
AxesLabel -> {"y", "x"}, PlotRange -> All,
PlotLegends -> Automatic, ColorFunction -> "BlueGreenYellow"]

but now I lost my data (the coordinates). How I can recover those in such way that I can plot them by:
ListContourPlot[recovereddata]
or preferably
ListContourPlot[ recovereddata, DataRange -> {{yMin, yMax}, {xMin, xMax}},
AxesLabel -> {"y", "x"}, PlotRange -> All,
PlotLegends -> Automatic, ColorFunction -> "BlueGreenYellow"]
Comments
Post a Comment