美文网首页
matlab绘图

matlab绘图

作者: Aerosols | 来源:发表于2022-04-10 00:30 被阅读0次

图片名称必须是cell型,并且不能有:

ph2 = 'E:\论文\探空\';
list = dir([ph2,'seasia_54511_sounding_2017_10_2*.txt']);
k = length(list);   %总文件数量%

for i=1:k-2
    filename = strcat(ph2,list(i).name);
    fid=fopen(filename,'r');
    if fid<0
        disp('打开文件失败!');
        return;
    else
        FormatString=repmat('%f ',1,11);
        out(:,:,i) =cell2mat(textscan(fid,FormatString,18,'HeaderLines',6)); %从7行开始读取18*11的矩阵数据,跳6行
    end
    disp('文件读取成功!');
    
    %     if fclose(fid)==0
    %         disp('文件关闭成功!');
    %     else
    %         disp('关闭文件失败!');
    %     end
    %     fclose(fid);
end

Varname={'PRES(hPa)','HGHT(m)','TEMP(c)','DWPT(c)','RELH(%)','MIXR(g/kg)','DRCT(deg)','SKNT(knot)','THTA(K)','THTE(K)','THTV(K)'};%knot/2=m/s
%%% 需要的列是2(高度),7(风向),8(风速),9(位温)


%%% 绘图
for i=1:10
figure;
number = 37+i*12;
plot(wind(number,1:26),z(number,1:26),'b-','linewidth',3);
hold on;
scatter(out(:,8,i)/2,out(:,2,i),50,'r','filled');
xlim([0,25])
ylim([0,3000])
set(gca,'ytick',[0 500  1000 1500 2000 2500 3000],'yticklabel',{'0','0.5','1','1.5','2','2.5','3'},'fontsize',14,'fontname','Times new roman')
set(gca,'xtick',[0 5  10 15 20 25],'xticklabel',{'0','5','10','15','20','25'},'fontsize',14,'fontname','Times new roman')
xlabel('m/s','fontsize',14,'fontname','Times new roman')
ylabel('Height(km AGL)','fontsize',14,'fontname','Times new roman')
title(date2(number))
set(gca,'fontsize',14,'fontname','Times new roman')
set(gca,'XMinorTick','on')
set(gca,'YMinorTick','on')
print('-r150','-dpng',['E:\论文\低空急流\图片\探空VS模式\',pigname{number}])
end

overlay 使用panel
http://www.ncl.ucar.edu/Applications/panel.shtml
http://www.ncl.ucar.edu/Applications/Scripts/panel_13.ncl

相关文章

  • 文章预告

    GMT 绘图系列 Matlab 论文绘图系列

  • Matplotlib知识点总结

    `Matplotlib是Python中最流行的绘图库,它模仿MATLAB中的绘图风格,提供了一整套与MATLAB相...

  • matplotlib绘图入门详解

    matplotlib是受MATLAB的启发构建的。MATLAB是数据绘图领域广泛使用的语言和工具。MATLAB语言...

  • 用matlab画一张SCI插图要求的y = sin(x)曲线图

    参考文章 《Matlab plot绘图颜色详解》 《SCI规范作图(Matlab)+简洁干货+源代码+免费》 《如...

  • Matlab绘图Tips集合

    matlab的绘图和可视化能力是不用多说的,可以说在业内是家喻户晓的。Matlab提供了丰富的绘图函数,比如ez*...

  • matplotlib学习1

    matplotlib 的pyplt是Matplot中的绘图接口,它提供与MATLAB相似的绘图接口。绘图终点要素A...

  • MATLAB绘制二维图像

    % % % % % 标准绘制多个线条 % % % % 资料 MATLAB之绘图基础

  • matlab绘图

    调用的函数 subplot()函数这个函数决定图的布局以及在那里开始画;例如subplot(2,2,3)表示将画板...

  • matlab绘图

    图片名称必须是cell型,并且不能有: overlay 使用panelhttp://www.ncl.ucar.ed...

  • matlab绘图

    画连续的填色图

网友评论

      本文标题:matlab绘图

      本文链接:https://www.haomeiwen.com/subject/hbgxtctx.html