Newer
Older
masterarbeit / oldMcode / plotChannelProzDiff.m
@JPH JPH on 21 Jul 2016 347 bytes restructure
function [] = plotChannelProzDiff( pwMeanMove, pwMeanRest,hz, params )

for i=1:size(params.ChannelNames.Value,1)
    n=mod(i,9);
    if n==1
        figure
    elseif n==0;
        n=9;
    end
    subplot(3,3,n);
    plot(hz,(pwMeanMove(:,i)-pwMeanRest(:,i))./pwMeanRest(:,i))
    xlim([0 150])
    title(params.ChannelNames.Value(i))
end

end