我是靠谱客的博主 有魅力小松鼠,最近开发中收集的这篇文章主要介绍MATLAB从入门到精通-Matlab R2020b新功能 | 子标题和标题/标签对齐功能!,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1. 添加副标题

  • 多行标题已经支持了很长一段时间,但是从r2020b开始,您可以用两种简单的方法将具有自己独立属性的副标题添加到绘图中。

- Use the new subtitle function: 
>> s=subtitle('mySubtitle')
- Use the new second argument to the title function: 
>> [t,s]=title('myTitle','mySubtitle')

图片

figure()
tiledlayout(2,2)
% Method 1
ax(1) = nexttile;
th(1) = title('Pupil size'); 
sh(1) = subtitle('Happy faces');
ax(2) = nexttile;
th(2) = title('Pupil size'); 
sh(2) = subtitle('Sad faces');
% Method 2
ax(3) = nexttile;
[th(3), sh(3)] = title('Fixation duration', 'Happy faces'); 
ax(4) = nexttile;
[th(4), sh(4)] = title('Fixation duration', 'Sad faces'); 
set(ax, 'xticklabel', [], 'y

最后

以上就是有魅力小松鼠为你收集整理的MATLAB从入门到精通-Matlab R2020b新功能 | 子标题和标题/标签对齐功能!的全部内容,希望文章能够帮你解决MATLAB从入门到精通-Matlab R2020b新功能 | 子标题和标题/标签对齐功能!所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(65)

评论列表共有 0 条评论

立即
投稿
返回
顶部