Skip to content

Commit

Permalink
Assignmnet alignmnet
Browse files Browse the repository at this point in the history
  • Loading branch information
JayKickliter committed Sep 15, 2014
1 parent 8d73e5d commit 213aeb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Filters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ function filt!{T}( buffer::Vector{T}, self::FIRFilter{FIRStandard}, x::Vector{T}
history::Vector{T} = self.history
h::Vector{T} = self.kernel.h
hLen = self.kernel.hLen
historyLen = self.historyLen
historyLen = self.historyLen
bufLen = length( buffer )
xLen = length( x )
outLen = xLen
Expand Down Expand Up @@ -363,7 +363,7 @@ function filt!{T}( buffer::Vector{T}, self::FIRFilter{FIRInterpolator}, x::Vecto
tapsPer𝜙 = self.kernel.tapsPer𝜙
xLen = length( x )
bufLen = length( buffer )
historyLen = self.historyLen
historyLen = self.historyLen
outLen = outputlength( self, xLen )
criticalYidx = min( historyLen*interpolation, outLen )

Expand Down

0 comments on commit 213aeb2

Please sign in to comment.