Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
lscsoft
lalsuite
Commits
668f3656
Verified
Commit
668f3656
authored
Jun 11, 2019
by
Duncan Macleod
Committed by
Adam Mercer
Jun 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lal: fixed missing factor in mkl PSD
(cherry picked from commit
18fd13c1
)
parent
bf5f951c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
lal/src/fft/IntelRealFFT_source.c
lal/src/fft/IntelRealFFT_source.c
+1
-0
No files found.
lal/src/fft/IntelRealFFT_source.c
View file @
668f3656
...
...
@@ -295,6 +295,7 @@ int POWER_SPECTRUM_FUNCTION(REAL_VECTOR_TYPE * spec, const REAL_VECTOR_TYPE * da
REAL_TYPE
re
=
plan
->
tmp
[
2
*
k
-
1
];
REAL_TYPE
im
=
plan
->
tmp
[
2
*
k
];
spec
->
data
[
k
]
=
re
*
re
+
im
*
im
;
spec
->
data
[
k
]
*=
2
.
0
;
/* accounts for negative frequency part */
}
/* Nyquist frequency */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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