码迷,mamicode.com
首页 > 其他好文 > 详细

Matlab画图所用到

时间:2020-03-02 10:39:10      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:rom   坐标   plot   博文   柱状图   alpha   mat   col   position   

画三维柱状图

datafilename = ‘experiments_for_different_alpha_beta_J_results_c70.txt‘;
full_data = load(datafilename);
J_plot = reshape(full_data(:,3),8,8);
figure
bar3(J_plot,0.25,‘detached‘)
%s设置坐标轴

xlabel(‘\it \alpha‘,‘FontName‘,‘Times New Roman‘);
ylabel(‘\it \beta‘,‘FontName‘,‘Times New Roman‘);
zlabel(‘\it J‘,‘FontName‘,‘Times New Roman‘);
set (gcf, ‘color‘,‘w‘)
%set (gcf,‘Position‘,[400,100,299,299], ‘color‘,‘w‘)
set(gca,‘FontName‘,‘Times New Roman‘);
set(gca,‘YTickLabel‘,{‘1‘;‘3‘;‘5‘;‘7‘;‘9‘;‘11‘;‘13‘;‘15‘})
set(gca,‘XTickLabel‘,{‘begin‘;‘3‘;‘5‘;‘7‘;‘9‘;‘11‘;‘13‘;‘15‘})




%title(‘Width = 0.25‘)

 其中用到的柱状改色,链接参考上一篇博文

Matlab画图所用到

标签:rom   坐标   plot   博文   柱状图   alpha   mat   col   position   

原文地址:https://www.cnblogs.com/jtailong/p/12393991.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!