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

matlab之mean()函数

时间:2018-11-04 12:48:37      阅读:733      评论:0      收藏:0      [点我收藏+]

标签:bsp   atl   mat   matlab   tla   3.5   nbsp   举例   函数   

mean(A,1):沿着第一维(列)求平均值;

mean(A,2):沿着第二维(行)求平均值;

举例:

Z=[1 2 3;4 5 6];

>> mean(Z,1)

ans =

2.5000 3.5000 4.5000

>> mean(Z,2)

ans =

2
5

 

matlab之mean()函数

标签:bsp   atl   mat   matlab   tla   3.5   nbsp   举例   函数   

原文地址:https://www.cnblogs.com/yibeimingyue/p/9903320.html

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