将m乘n矩阵转换为1乘n矩阵

时间:2015-02-11 09:12:16

标签: image matlab image-processing computer-vision

我想将127乘以4矩阵转换为1乘4矩阵,使得输出行中的每个值等于该特定列中所有值的平均值。

1 个答案:

答案 0 :(得分:2)

只需使用mean功能:

A = rand(127,4);
B = mean(A,1);      % Average of A along the first dimension

最佳,