matlab命令函数,plot,tic和toc,sort,trace,disp

以下是自己在初学matlab时遇到的,分享给大家,希望对大家有所帮助。

  • 1. plot(x,y); %x y 为相应点集

2.plot(x,y1,x,y2); % 在一个窗口下绘制多条曲线之方法一

3.hold on  %在一个窗口下绘制多条曲线之方法二

  plot(x,y1);

 plot(x,y2);

 hold off

4.plot后

   xlabel('x_axis_name'); %设置x y轴名称

   ylabel('x_axis_name'); 

   title('name'); %设置图名称

5.线型和颜色

线型(线方式): - 实线 :点线 -. 虚点线 - - 波折线

线型(点方式):. 圆点 +加号 * 星号 x x形 o 小圆

线条粗细:plot(x,y,'r','linewidth',4); 

颜色: r红; g绿; b蓝; c青  m紫; k黑; w白;y黄;

例子:

plot(x,y1,’b:+’,x,y2,’g-.*’);

6.加图例legend

legend(字符串1,字符串2,字符串3,…,参数);  %其中字符串为画图顺序依次标注,参数说明如下:

参数字符串                              含  义

0                             尽量不与数据冲突,自动放置在最佳位置    

1                              放置在图形的右上角

2                              左上角

3                             左下角

4                             右下角

-1                            图形窗外

7.设置背景色

set(gcf,'color','none'); %无背景

set(gcf,'color',[0,0,0]); %背景色为黑

set(gcf,'color',[1,1,1]); %背景色为白

hold on 是一个图形保持命令

  • 2 tic和toc用来记录matlab命令执行的时间。

tic用来保存当前时间,而后使用toc来记录程序完成时间。两者往往结合使用,用法如下:

tic

operations

toc

显示时间单位:秒

  • 3. sort函数

(1)B=sort(A) 对一维或二维数组进行升序排序,并返回排序后的数组,当A为二维时,对数组每一列进行排序.

eg: A=[1,5,3],则sort(A)=[1,3,5]

   A=[1,5,3;2,4,1],则sort(A)=[1,4,1;2,5,3]

(2)B=sort(A,dim),对数组按指定方向进行升序排序,

dim =1,表示对每一列进行排序,,dim=2表示对每一行进行排序.

(3)B=sort(A,dim,mode),mode为指定排序模式,mode为"ascend"时,进行升序排序,为"descend "时,进行降序排序.

(4)[B,I]=sort(A,.....),I为返回的排序后元素在原数组中的行位置或列位置.

一些例子:

>> A=[3 4 2;1 5 3;4 7 1]

A =

     3     4     2

     1     5     3

     4     7     1

>> A(:)

ans =

     3

     1

     4

     4

     5

     7

     2

     3

     1

>> min(A(:))

ans =

     1

>> max(A(:))

ans =

     7

>> A

A =

     3     4     2

     1     5     3

     4     7     1

>> sort(A)

ans =

     1     4     1

     3     5     2

     4     7     3

>> A

A =

     3     4     2

     1     5     3

     4     7     1

>> sort(A(:))

ans =

     1

     1

     2

     3

     3

     4

     4

     5

     7

>> sort(A,1)

ans =

     1     4     1

     3     5     2

     4     7     3

>> sort(A,2)

ans =

 

     2     3     4

     1     3     5

     1     4     7

>> sort(A,1,'descend')

ans =

     4     7     3

     3     5     2

     1     4     1

>> [B,I]=sort(A)

B =

     1     4     1

     3     5     2

     4     7     3

I =

     2     1     3

     1     2     1

     3     3     2

  • 4.trace用法

遗传算法中trace 代表 每次迭代 平均结果最好的矩阵 其中 

(1) trace(:,2)表示各个进化代中的最佳适应度函数值

(2) trace(:,3)表示各个进化代中所有个体的平均适应度函数值

  • 5.disp 用法

1.输出字符串:

>>disp('my test')

my test

2.输出数字:

>> test=3;

>> disp(test)

3

3.同时输出字符串和数字:

>> test=3;

>> disp(['my test=',num2str(test)])

my test=3

你可能感兴趣的:(matlab,matlab)