Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Vasudevan, Rama K
pycroscopy
Commits
098d5147
Commit
098d5147
authored
Nov 08, 2017
by
syz
Browse files
fixed bug in composite filter building
parent
98b51409
Changes
1
Hide whitespace changes
Inline
Side-by-side
pycroscopy/processing/fft.py
View file @
098d5147
...
...
@@ -158,7 +158,7 @@ def build_composite_freq_filter(frequency_filters):
if
not
isinstance
(
frequency_filters
,
Iterable
):
frequency_filters
=
[
frequency_filters
]
comp_filter
=
frequency_filters
[
0
].
value
comp_filter
=
np
.
float32
(
frequency_filters
[
0
].
value
)
for
ind
in
range
(
1
,
len
(
frequency_filters
)):
comp_filter
*=
frequency_filters
[
ind
].
value
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment