subplot change size of xtick ytick
7 次查看(过去 30 天)
显示 更早的评论
How do i change the size of my xtick ytick in subplot ? This is a part of my code
set(gca, 'XTick', 0.5:0.1:1, 'YTick', 0:0.2:1);
axis(gca,'square');
legend('3DOP', 'MCG-D', 'MCG', 'EB', 'SS', 'BING');
xlabel('Intersection Over Union');
ylabel('Recall');
0 个评论
采纳的回答
KSSV
2017-1-23
set(gca, 'XTick', 0.5:0.1:1, 'YTick', 0:0.2:1);
set(gca, 'FontSize', 18)
axis(gca,'square');
legend('3DOP', 'MCG-D', 'MCG', 'EB', 'SS', 'BING');
xlabel('Intersection Over Union','Fontsize',12);
ylabel('Recall','Fontsize',12);
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!