0001 function out = apply_SpicyMKL(C, F) 0002 0003 [mte,mtr,nn]=size(F); 0004 0005 F = permute(F, [3, 1, 2]); 0006 0007 F = reshape(C.d*F(:,:), [mte, mtr]); 0008 0009 out = F*C.alpha+C.bias;