Newer
Older
masterarbeit / usedMcode / shiftingMean.m
@Jan-Peter Hohloch Jan-Peter Hohloch on 15 Oct 2016 373 bytes fix(?) shifting mean
function [ output ] = shiftingMean( data,factor )
%shiftingMean downsampling by taking the mean
%   taking the mean of $factor data as new datum
    dataSize=size(data);
    output=zeros([fix(dataSize(1)/factor),dataSize(2:end)]);
    for i=1:size(output,1)
        output(i,:)=mean(data(fix(round((i-1)*factor))+1:min(fix(round(i*factor)),dataSize(1)),:),1);
    end
end