replicate.m 219 B
function Vals = replicate(Vals,ResOff)
%REPLICATE Summary of this function goes here
% Detailed explanation goes here
numVal = numel(Vals);
for val = 1:numVal
Vals{val} = LF.replicate(Vals{val},ResOff);
end
end
Code should be simpler and easier to understand
Code should be simpler and easier to understand
function Vals = replicate(Vals,ResOff)
%REPLICATE Summary of this function goes here
% Detailed explanation goes here
numVal = numel(Vals);
for val = 1:numVal
Vals{val} = LF.replicate(Vals{val},ResOff);
end
end