https://github.com/hasselmonians/mle_rhythmicity
Raw File
Tip revision: 7c50ba73fa34dbe2586fb0f9e0204bd1e28f3209 authored by jrclimer on 11 July 2016, 16:29:52 UTC
Resolves #7
Tip revision: 7c50ba7
undeal.m
function [ out ] = undeal( fun, nout, varargin )
%UNDEAL Summary of this function goes here
%   Detailed explanation goes here
    out = cell(nout,1);
    [out{:}] = deal(fun(varargin{:}));
end

back to top