I have this plot that I generated as a test of figuring out how contour plots work on matlab in general. I'm trying to figure out if there is a way I can plot just one of the lines but not necessarily the first line.
They way Matlab explains it is if you do:
contour(X,Y,Z,1);
it will plot one of the lines but it's always the first one, but for my particular case I want the 3rd or 4th one. Is there a way to do that in Matlab?
v = [2 2]; contour(X,Y,Z,v)Will plot the contour at value 2 - user1337