about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/BNT/examples/static/Zoubin/rsum.m
blob: 0af53fde5359e7c47d33011e12466cb382949e8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
% row sum
% function Z=rsum(X)

function Z=rsum(X)

[N M]=size(X);

Z=zeros(N,1);

if M==1,
  Z=X;
elseif M<2*N,
  for m=1:M,
    Z=Z+X(:,m);
  end;
else
  for n=1:N
    Z(n)=sum(X(n,:));
  end;
end