Contour plot question: can I create more than one contour value line?

1 view (last 30 days)
Hello, In the script:
x = -3:0.125:3;
y = -3:0.125:3;
[X,Y] = meshgrid(x,y);
Z = peaks(X,Y);
v = [1,1];
figure
contour(X,Y,Z,v),
is it possible to add more values contour lines (for example v = [2,2]) in the same figure? Thanks in advance for your reply.

Answers (0)

Categories

Find more on Contour Plots in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!