zoukankan      html  css  js  c++  java
  • How to Change the Size of a Box-Plot Label in MATLAB

    1.  Type "load carsmall" to load a sample data set included with MATLAB.
    2.  Type "boxplot(Horsepower,Origin)" to generate a box plot of auto horsepower grouped by country of origin.
    3.  Type "set(findobj(gca,'Type','text'),'fontunits','points')" to set the font units for the labels to points. Alternatively, replace "points" with "inches," "centimeters" or "pixels."
    4.  Type "set(findobj(gca,'Type','text'),'fontsize',14)" to increase the font size from the default of 12 to 14 using the units you previously specified -- or replace "13" with the size you want.
  • 相关阅读:
    SpringMvc
    Spring-Aop
    Spring-IOC
    Spring模块划分
    队列
    稀疏数组
    数据结构
    Nginx配置实例
    Nginx常用命令
    视频断点播放:h5+jquery
  • 原文地址:https://www.cnblogs.com/Gingber/p/4725831.html
Copyright © 2011-2022 走看看