view general/arrutils/maprows.m @ 42:ae596261e75f

Various fixes and development to audio handling
author samer
date Tue, 02 Dec 2014 14:51:13 +0000
parents fbc0540a9208
children
line wrap: on
line source
function Y=maprows(f,X)
% maprows - Map a function of a vector over the rows of an array
%
% maprows :: 
%    ([[1,N]->A] -> [[1,M]->B]) ~'function maps a row of A to a row of B',
%    [[L,N]->A]
% -> [[L,M]->B].

n=size(X,1);
if n==0, Y=[];
else
	for i=n:-1:1
		Y(i,:)=f(X(i,:));
	end
end