标签: image matlab image-processing computer-vision
我想将127乘以4矩阵转换为1乘4矩阵,使得输出行中的每个值等于该特定列中所有值的平均值。
答案 0 :(得分:2)
只需使用mean功能:
mean
A = rand(127,4); B = mean(A,1); % Average of A along the first dimension
最佳,