I need help to plot 2D contours as shown in the figure for mutiple files. I am attaching my code and data files for your reference. I am unable to plot it due to some mistake in the code.
navg = 11;
filenames = cell(navg,1);
for i = 1:navg
filenames = sprintf('queen2_test_%d.dat', i);
mydata{i}=importdata(filenames);
% writematrix(avg_mat{i}, filenames{i});
R = mydata{i}(:,1);%X
C = mydata{i}(:,2);%Y
F = mydata{i}(:,7);%F(X,Y)
figure
contour(R,C,repmat(F,1,numel(C))');
grid on;
end
saveas(gcf,figure,'.png']);

 채택된 답변

Ameer Hamza
Ameer Hamza 2020년 5월 5일
편집: Ameer Hamza 2020년 5월 5일

0 개 추천

Run the attached code with the files you provided
navg = 11;
filenames = cell(navg,1);
for i = 1:navg
filenames = sprintf('queen2_test_%d.dat', i);
mydata{i}=importdata(filenames);
% writematrix(avg_mat{i}, filenames{i});
R = mydata{i}(:,1);%X
C = mydata{i}(:,2);%Y
F = mydata{i}(:,7);%F(X,Y)
rg = linspace(min(R), max(R), 100);
cg = linspace(min(C), max(C), 100);
[Rg, Cg] = meshgrid(rg, cg);
Fg = griddata(R, C, F, Rg, Cg);
figure
ax = axes();
ax.YDir = 'reverse';
hold on;
contourf(Rg,Cg,Fg);
ax.XAxisLocation = 'top';
cb = colorbar('Location', 'south');
cb.Position(2) = cb.Position(2)-0.11;
grid on;
saveas(gcf,filenames(1:end-4),'png');
delete(gcf);
end

댓글 수: 19

Ameer Hamza
Ameer Hamza 2020년 5월 5일
편집: Ameer Hamza 2020년 5월 5일
Note if you are using R2020a, then you can replace the saveas() line to the following line to get a better quality output
exportgraphics(gcf,[filenames(1:end-4),'.png'], 'Resolution', 300);
If you don't have R2020a, then download this package from FEX: https://www.mathworks.com/matlabcentral/fileexchange/23629-export_fig and use the following line to save high-resolution output
export_fig(gcf,[filenames(1:end-4),'.png'], '-r300');
MS
MS 2020년 5월 5일
편집: MS 2020년 5월 5일
Thanks for helping me out. I need a request.
1, I request to flip the x axis an y axis as shown in the figure.
2, contour values as shown in the below figure
Ameer Hamza
Ameer Hamza 2020년 5월 5일
Run the updated code.
MS
MS 2020년 5월 5일
Thanks, I want contour also fliped as shwon in the figure. in the updated code, the contour is not flipped.
Ameer Hamza
Ameer Hamza 2020년 5월 5일
check the updated code.
MS
MS 2020년 5월 5일
Awesome. I am really grateful to you. The axes is interferrring with the contour as shown in the figure(going inside the contour plot). is it a a bug?
Ameer Hamza
Ameer Hamza 2020년 5월 5일
This problem is not happening in R2020a. As a quick-fix, you can move the axes a bit up
ax = axes();
ax.YDir = 'reverse';
ax.Position(2) = ax.Position(2)+0.02; % <=== add this line. Tune value of 0.02 until there is no overlap
MS
MS 2020년 5월 5일
Thank you very much.
MS
MS 2020년 5월 7일
편집: MS 2020년 5월 7일
How to set same maximum and minimum axis for the plot. Please add your inputs.
caxislimit = 150;
caxis(obj.hAxes,[-caxislimit caxislimit]);
Ameer Hamza
Ameer Hamza 2020년 5월 7일
What does that represent? I am not sure why that could be useful. Also, It is impossible in MATLAB. The second limit should be greater than first.
MS
MS 2020년 5월 7일
편집: MS 2020년 5월 7일
Thanks, i want the axis limt eg.,[-100 to 100]. to be same for all the figures to be saved. It will be helpful to compare the intensity between the images. Kindly let me know if you need any calrifications.
Ameer Hamza
Ameer Hamza 2020년 5월 7일
Oh! I misread it to be caxis(obj.hAxes, [150 150]). Your syntax seems correct. It should show colorbar between -150 to 150.
MS
MS 2020년 5월 7일
Thanks, i am getting error when i insert the same line in the updated code.
error:
Unable to resolve the name obj.hAxes
Ameer Hamza
Ameer Hamza 2020년 5월 7일
Are you making a GUI using GUIDE? Where did you get the statement 'obj.hAxes'
MS
MS 2020년 5월 7일
no, i got it from some gui code. I got the line correct now. Thanks for the help
caxis([-150 150])
colorbar
Ameer Hamza
Ameer Hamza 2020년 5월 7일
Yes, if you have single axes then you don't need to specify an axes handle.
MS
MS 2020년 5월 7일
okay. thank you for correcting the mistake.
MS
MS 2020년 5월 8일
편집: MS 2020년 5월 8일
hi ameer,
I want to label the colur bar as shown in the figure1.
my current code is labelling beside as shown in the figure below instead of labelling on the top as shown in the above figure1 .
h = colorbar;
xlabel(h, 'ω')
Kindly suggest a code.
MS
MS 2020년 5월 8일
I made the code to change the postion. Thanks.
pos = get(h,'Position');
h.Label.Position = [2 30]; % to change its position
h.Label.Rotation = 0; % to rotate the text

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Contour Plots에 대해 자세히 알아보기

질문:

MS
2020년 5월 5일

댓글:

MS
2020년 5월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by