comparison toolboxes/FullBNT-1.0.7/bnt/examples/static/Zoubin/rprod.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
1 % row product
2 % function Z=rprod(X,Y)
3
4 function Z=rprod(X,Y)
5
6 if(length(X(:,1)) ~= length(Y(:,1)) | length(Y(1,:)) ~=1)
7 disp('Error in RPROD');
8 return;
9 end
10
11 Z=zeros(size(X));
12
13 for i=1:length(X(1,:))
14 Z(:,i)=X(:,i).*Y;
15 end