Advertisement
Guest User

Untitled

a guest
Mar 8th, 2017
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. graddata = graddata[[1]];
  2. data = data[[1]];
  3. iF = Interpolation[
  4. graddata /. {a_, b_, c_} :> {a + RandomReal[10^-10*{-1, 1}],
  5. b + RandomReal[10^-10*{-1, 1}], c}, InterpolationOrder -> 1];
  6. ListPlot3D[data, MeshFunctions -> {Function[{x, y, z}, iF[x, y]]},
  7. Mesh -> {5}, MeshStyle -> Directive[Red, Thick]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement