Is there a way to pass additional numeric arguments to the function (or handle) inside parcellfun()?
For example, if I have a cell array Images and I want to apply medfilt2() to them, I'll write something like:
Images = parcellfun( nproc, @medfilt2, Images, 'UniformOutput', false );
What is, if at all, a way to pass additional arguments to medfilt2, in this case, let's say [7 7]?
Octave's help has this to say:
[O1, O2, ...] = parcellfun (NPROC, FUN, A1, A2, ...).. A1, A2 etc. should be cell arrays of equal size.
GNU Octave 3.8.1, in case it helps.
 
     
    