校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁 > 知識庫 > matlab xlabel位置的設(shè)置方式

matlab xlabel位置的設(shè)置方式

熱門標(biāo)簽:沈陽人工外呼系統(tǒng)價格 沈陽防封電銷卡品牌 武漢外呼系統(tǒng)平臺 池州外呼調(diào)研線路 外呼系統(tǒng)哪些好辦 江西省地圖標(biāo)注 如何申請400電話費用 富錦商家地圖標(biāo)注 沈陽外呼系統(tǒng)呼叫系統(tǒng)
xlabel(‘time',‘FontSize',12);

如果沒有設(shè)置位置,默認(rèn)是在中間

在xlabel中也有position用法

xlabel(‘time',‘position',[900,1870],‘FontSize',12);

此時‘time'在你設(shè)置的位置

還有一種用法是類似圖像的用法

pos=axis;%取得當(dāng)前坐標(biāo)軸的范圍,即[xmin xmax ymin ymax]
xlabel(‘time',‘FontSize',12, ‘Position',[pos(2) pos(3)])

x=0:pi/50:2*pi;
y=sin(x);
plot(x,y);
pos=axis;%取得當(dāng)前坐標(biāo)軸的范圍,即[xmin xmax ymin ymax]
xlabel('x軸','position',[pos(2) 1.15*pos(3)]);%設(shè)置x軸標(biāo)簽的文本在圖的右下方,1.15這個值根據(jù)自己的需要可以調(diào)整
形成的圖

補(bǔ)充:Matlab作圖實例——xlabel,ylabel,title,text,plot,patch,datetime等的應(yīng)用

做線性圖,并用變量標(biāo)記每個點

所用數(shù)據(jù)如下:

代碼如下:

clear
clc
format compact
format shortG 
T = readtable('repayment_schedule.xlsx','ReadVariableNames',true)
T.time=datetime(datestr(T.time,'yyyy.mm.dd'),'InputFormat','yyyy.MM.dd',...
    'format','yyyy.MM.dd')
p=plot(T.time,T.m_per_month,T.time,T.m_residue)
p(1).Marker='o'
p(2).Marker='*'
box off
%讓y軸不用科學(xué)計數(shù)法顯示
h=gca
y_val=h.YTick
y_str=string(y_val) %等價于y_str=num2str(y_val')
h.YTickLabel=y_str
%橫軸日期顯示設(shè)置
h.XTick=T.time
xtickangle(45) %讓x軸的標(biāo)簽?zāi)鏁r針旋轉(zhuǎn)45度
%畫垂直虛線
hold on
p1=plot([datetime(2018,11,20) datetime(2018,11,20)],...
    [0 30830],'Color',[0.6 0.6 0.6],'LineStyle','--')
p2=plot([datetime(2018,12,20) datetime(2018,12,20)],...
    [0 26434],'Color',[0.6 0.6 0.6],'LineStyle','--')
p3=plot([datetime(2019,01,20) datetime(2019,01,20)],...
    [0 22038],'Color',[0.6 0.6 0.6],'LineStyle','--')
p4=plot([datetime(2019,02,20) datetime(2019,02,20)],...
    [0 17641],'Color',[0.6 0.6 0.6],'LineStyle','--')
p5=plot([datetime(2019,03,20) datetime(2019,03,20)],...
    [0 13245],'Color',[0.6 0.6 0.6],'LineStyle','--')
p6=plot([datetime(2019,04,20) datetime(2019,04,20)],...
    [0 8849],'Color',[0.6 0.6 0.6],'LineStyle','--')
p7=plot([datetime(2019,05,20) datetime(2019,05,20)],...
    [0 4452.8],'Color',[0.6 0.6 0.6],'LineStyle','--')
hold off
%標(biāo)注每個點
str1=string(T.m_per_month)
str2=string(T.m_residue)
text(T.time,T.m_per_month-1200,str1,'Color',[0 0.447 0.741],...
    'HorizontalAlignment','center')
text(datetime(datenum(T.time)+2,'ConvertFrom','datenum'),...
    T.m_residue+1100,str2,...
    'Color',[0.85 0.325 0.098],...
    'HorizontalAlignment','left')
%圖例
legend([p(1) p(2)],{'每月還款金額','每月還款后剩余總本息'},...
    'Location','northeast','NumColumns',1)
%各個標(biāo)題
xlabel('還款時間')
ylabel('還款金額')
title({'GGG還款計劃';'2018.12.20-2019.06.20'})
print('GGG還款計劃','-dpdf')
%將數(shù)據(jù)再寫入excel
% writetable(T,'test.xlsx','WriteVariableNames',true)

做出的圖如下:

畫線形函數(shù)圖,填充一部分并畫網(wǎng)格

相應(yīng)代碼為:

%填充并畫網(wǎng)格
clear
clc
v1 = [0 0; 4 0; 4 4;0 4];
f1 = [1 2 3 4];
figure
patch('Faces',f1,'Vertices',v1,...
    'EdgeColor',[0.75 0.75 0.75],'FaceColor',[0.75 0.75 0.75]);
g=gca
g.XTick=[0:4]
g.YTick=[0:4]
g.XLim=[0 4.5]
g.YLim=[0 4.5]
grid on
g.Layer = 'top';
g.GridColor=[1 1 1]
g.GridLineStyle='--'
g.GridAlpha = 1
axis square
%挖洞
v2 = [1 1;2 1;2 2;1 2];
f2 = [1 2 3 4];
patch('Faces',f2,'Vertices',v2,...
    'EdgeColor',[0.75 0.75 0.75],'FaceColor',[1 1 1]);
%畫函數(shù)圖
hold on
f1=@(t) 4*t-4
f2=@(t) 0.25*t+1
f1p=fplot(f1,[1 2],'k','LineWidth',1,'DisplayName','X的策略')
f2p=fplot(f2,[0 4],'--k','LineWidth',1,'DisplayName','Y的策略')
xlabel('X的策略')
ylabel('Y的策略')
legend([f1p f2p],{},'NumColumns',2,'FontSize',10)
%導(dǎo)出為PDF
% saveas(gcf,'qiyan.pdf')
print('qiyan','-dpdf')

做出的圖如下

以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • matplotlib之pyplot模塊坐標(biāo)軸標(biāo)簽設(shè)置使用(xlabel()、ylabel())
  • python 設(shè)置xlabel,ylabel 坐標(biāo)軸字體大小,字體類型
  • Matlab中plot基本用法的具體使用

標(biāo)簽:呂梁 阿里 常德 黑龍江 銅川 通遼 潛江 株洲

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《matlab xlabel位置的設(shè)置方式》,本文關(guān)鍵詞  matlab,xlabel,位置,的,設(shè)置,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《matlab xlabel位置的設(shè)置方式》相關(guān)的同類信息!
  • 本頁收集關(guān)于matlab xlabel位置的設(shè)置方式的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 炉霍县| 阳曲县| 班戈县| 汉中市| 灵丘县| 兴宁市| 昌平区| 重庆市| 澎湖县| 南和县| 兴宁市| 慈利县| 厦门市| 泸溪县| 惠安县| 顺义区| 浏阳市| 论坛| 临武县| 大田县| 湖北省| 泰州市| 荔波县| 溧水县| 阿尔山市| 延吉市| 阿拉善右旗| 安远县| 海宁市| 屏山县| 铜梁县| 易门县| 黎平县| 县级市| 丰县| 大英县| 濮阳市| 含山县| 三都| 云和县| 开化县|