MATLAB——PLOT绘图

格式化绘图:

1.color:

b r c m y k w
blue green red  cyan magenta yellow black white

2.type of coordinate point

. o x * s d v ^ < > p h
point  circle x-mark plus star square diamond triangle (down) triangle (up) triangle (left) riangle (right) pentagram(五角星形) hexagram(六角星形)

3.type of line

- : -. -- (none)
solid dotted dashdot dashed(虚线) no line

4.instance

by using the instruction "polt(X, Y, S)", we can plot points and lines with the types listed above.  in "polt(X, Y, S)",X and Y are vectors, S is a string formed of elements listed above. For example, when S = 'o--', it means that the symble for points is circle, and the line format is dashed.

conduct the instructions:

>> x = [1:1:10];
>> y = [2:1:11];
>> plot(x, y, 'o--')

we can get figure below:

最新文章

  1. Android业务组件化之子模块SubModule的拆分以及它们之间的路由Router实现
  2. Theoretical comparison between the Gini Index and Information Gain criteria
  3. zabbix 监控java程序
  4. mybaits入门
  5. mobilebone.js使用笔记
  6. org.hibernate.LazyInitializationException: could not initialize proxy - no Session
  7. python 安装操作 MySQL 数据库.
  8. 邮箱格式验证demo
  9. ViewGroup源码部分解析
  10. oracle10g 和oracle11g同时安装时PL/SQL连不上解决方案
  11. Js 学习资料
  12. 数据的动态合并和导出至EXCEL
  13. AJAX验证数据库内容并显示在页面
  14. Java多线程 阻塞队列和并发集合
  15. cocos creator主程入门教程(六)—— 消息分发
  16. linux优化之系统参数调优篇
  17. LiquiBase 学习
  18. [Android Pro] 完美解决 No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
  19. KVM安装、镜像创建(一)
  20. maven第一天——入门与基本概念

热门文章

  1. 基于python yield机制的异步操作同步化编程模型
  2. 使用Linux系统中的SSH服务
  3. java synchronized关键字浅探
  4. 博客转移到 海胖网 http://haipz.com/ 希望你能支持我们!
  5. Java设计模式之--代理模式学习
  6. String 两种实例化方式的区别
  7. c++11:copy_n
  8. dmp文件导入
  9. OS X EI Capitan安装mcrypt
  10. Gulp vs Grunt 前端构建工具对比