码迷,mamicode.com
首页 > 其他好文 > 详细

MATLAB绘图

时间:2015-11-07 14:41:04      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

matlab绘制散点图

clc,clear

x=[11.9,11.5,14.5,15.2,15.9,16.3,14.6,12.9,15.8,14.1];

y=[196.84,196.84,197.14,197.03,197.05,197.13,197.04,196.96,196.95,196.98];

plot(x,y,‘.‘)

技术分享

 

matlab绘制点线图

U
V
R=V./(U+V)
%图形展示出来
x=[1 2 3 4 5 6 7];
plot(x,U,‘-.R*‘,‘LineWidth‘,2);
hold on;
plot(x,V,‘-.G+‘,‘LineWidth‘,2);
hold on;
plot(x,R,‘-.Mo‘,‘LineWidth‘,2);
%hold on;
%grid on;
xlabel(‘Number‘);
ylabel(‘Recognition rate (%)‘);

技术分享

 

matlab:对单个矩阵plot绘图的说明

实例:a=magic(5)

a =

    17    24     1     8    15
    23     5     7    14    16
     4     6    13    20    22
    10    12    19    21     3
    11    18    25     2     9

plot(a)
grid on

技术分享


x=rand(10,1,40); % 随机取40个数 一个当横坐标 一个当纵坐标
y=rand(10,1,40);
%画图
plot(x( 1:10),y( 1:10),‘r.‘);hold on; % 点 r=红色
plot(x(11:20),y(11:20),‘g*‘);hold on; % 星星 g=绿色
plot(x(21:30),y(21:30),‘o‘);hold on; % 圆圈 默认是蓝色
plot(x(31:40),y(31:40),‘mo‘,‘MarkerSize‘,15) % 大大的圆圈 m=紫色

 

 

技术分享

MATLAB绘图

标签:

原文地址:http://www.cnblogs.com/wangh0802PositiveANDupward/p/4944898.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!