about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/BNT/examples/static/Zoubin/csum.m
blob: 2fba6ca5f3472d208f72d6ce874403b07724a504 (plain)
1
2
3
4
5
6
7
8
9
10
11
% column sum
% function Z=csum(X)

function Z=csum(X)

N=length(X(:,1));
if (N>1)
  Z=sum(X);
else
  Z=X;
end;