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

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:cc4b1211e677
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