Skip to content

Commit

Permalink
feat(review): fix docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
ocehugo committed Jul 14, 2020
1 parent a8ca87c commit 3388992
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AutomaticQC/SpikeClassifiers/imosSpikeClassifierHampel.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function [spikes, fsignal] = imosSpikeClassifierHampel(signal, half_window_width, madfactor, lower_mad_limit)
% function spikes, fsignal = imosSpikeClassifierHampel(signal, half_window_width, madfactor)
% function spikes, fsignal = imosSpikeClassifierHampel(signal, half_window_width, madfactor, lower_mad_limit)
%
% A wrapper to Hampel classifier.The hampel method is a robust parametric denoising filter that uses
% the MAD deviation (scaled) from the median in a pre-defined centred window.
Expand Down
6 changes: 3 additions & 3 deletions AutomaticQC/SpikeClassifiers/imosSpikeClassifiersLimits.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
%
% len = 100
% [limits] = imosTimeSeriesSpikeQCLimits(len)
% assert(limits.hampel.window.min==1)
% assert(limits.hampel.window.max=len/2)
% assert(limits.otsu_savgol.pdeg.min=2)
% assert(limits.hampel_half_window_width.min==1)
% assert(limits.hampel_half_window_width.max==len/2)
% assert(limits.hampel_madfactor.max = 20)
%
% author: hugo.oliveira@utas.edu.au
%
Expand Down

0 comments on commit 3388992

Please sign in to comment.