Mercurial > hg > ishara
view general/funutils/maprows.m @ 6:0ce3c2070089
Removed duplicate code and fixed doc in timed_action.
author | samer |
---|---|
date | Mon, 14 Jan 2013 14:33:37 +0000 |
parents | e44f49929e56 |
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