How to make my contour plot into spesific coordinate?

1 view (last 30 days)
i want to ask about contour plot, i already made contour plot like this in matlab
T = [11 5 7 6 6;
1 8 3 6 10];
r = 0.15; % radius of circle
rx = -r:0.01:r;
ry = r:-0.01:-r;
[x_coor, y_coor] = meshgrid(rx, ry);
radius = sqrt(x_coor.^2+y_coor.^2);
figure(1)
contourf(radius,'edgecolor','none');
xlabel('Widht');
ylabel('Long');
and the result
i want center of my contour plot located at spesific coordinate for example X=10 and Y=5, how to put center of my contour plot in spesific coordinate?
Thanks for help :)

Answers (1)

Image Analyst
Image Analyst on 7 Jun 2014

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!