how to separate each graph in contour plot?
Show older comments
1. I load a data.
2. And i draw a graph in contour plot to find diagonal patterns of data.

I want to separate each pattern and show them in each figure.
but i don't know how to set range in contour plot.
x = enter a value: % I would enter a value of x.
if x>0 & x<269 %because 1st pattern's range of x is 0~268.
figure(1)
contour(?) % i don't know how to write a code in here.
end
if x>268 & x<420 % 2nd pattern's range of x is 269~419.
figure(2)
contour(?)
end
.
.
.
To do make a code like this how should i do?
could you help me?
Accepted Answer
More 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!