Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Seitosh
Seitosh
Commits
13ecf49b
Commit
13ecf49b
authored
Jan 03, 2019
by
thomas.forbriger
Browse files
libpsdxx [WP]: add empty function bodies
parent
69e042bc
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/libs/libpsdxx/dpsdcomputer_coherency.cc
View file @
13ecf49b
...
...
@@ -30,13 +30,20 @@
*
* ============================================================================
*/
#define
TF
_DPSDCOMPUTER_COHERENCY_CC_VERSION \
"
TF
_DPSDCOMPUTER_COHERENCY_CC V1.0
"
#define
PSDXX
_DPSDCOMPUTER_COHERENCY_CC_VERSION \
"
PSDXX
_DPSDCOMPUTER_COHERENCY_CC V1.0"
#include
<
d
psd
computer_coherency
.h>
#include
<psd.h>
namespace
tf
{
namespace
psd
{
}
Tdouble_series
DPSDComputer
::
coherency
(
const
Tdouble_series
&
s1
,
const
Tdouble_series
&
s2
)
const
{
Tdouble_series
retval
;
return
(
retval
);
}
// Tdouble_series DPSDComputer::coherency(...) const
}
// namespace psd
/* ----- END OF dpsdcomputer_coherency.cc ----- */
src/libs/libpsdxx/dpsdcomputer_cross_psd.cc
View file @
13ecf49b
...
...
@@ -30,13 +30,21 @@
*
* ============================================================================
*/
#define
TF
_DPSDCOMPUTER_CROSS_PSD_CC_VERSION \
"
TF
_DPSDCOMPUTER_CROSS_PSD_CC V1.0
"
#define
PSDXX
_DPSDCOMPUTER_CROSS_PSD_CC_VERSION \
"
PSDXX
_DPSDCOMPUTER_CROSS_PSD_CC V1.0"
#include
<
dpsdcomputer_cross_
psd.h>
#include
<psd.h>
namespace
tf
{
namespace
psd
{
}
Tcomplex_double_series
DPSDComputer
::
cross_psd
(
const
Tdouble_series
&
s1
,
const
Tdouble_series
&
s2
)
const
{
Tcomplex_double_series
retval
;
return
(
retval
);
}
// Tcomplex_double_series DPSDComputer::cross_psd(...) const
}
// namespace psd
/* ----- END OF dpsdcomputer_cross_psd.cc ----- */
src/libs/libpsdxx/dpsdcomputer_psd.cc
View file @
13ecf49b
...
...
@@ -30,13 +30,19 @@
*
* ============================================================================
*/
#define
TF
_DPSDCOMPUTER_PSD_CC_VERSION \
"
TF
_DPSDCOMPUTER_PSD_CC V1.0
"
#define
PSDXX
_DPSDCOMPUTER_PSD_CC_VERSION \
"
PSDXX
_DPSDCOMPUTER_PSD_CC V1.0"
#include
<
dpsdcomputer_
psd.h>
#include
<psd.h>
namespace
tf
{
namespace
psd
{
}
Tdouble_series
DPSDComputer
::
psd
(
const
Tdouble_series
&
s
)
const
{
Tdouble_series
retval
;
return
(
retval
);
}
// Tdouble_series DPSDComputer::psd(const Tdouble_series& s) const
}
// namespace psd
/* ----- END OF dpsdcomputer_psd.cc ----- */
src/libs/libpsdxx/psd.h
View file @
13ecf49b
...
...
@@ -94,8 +94,8 @@ namespace psd {
//! compute power spectral density
Tdouble_series
psd
(
const
Tdouble_series
&
s
)
const
;
//! compute cross power spectrum
Tdouble_series
cross_psd
(
const
Tdouble_series
&
s1
,
const
Tdouble_series
&
s2
)
const
;
T
complex_
double_series
cross_psd
(
const
Tdouble_series
&
s1
,
const
Tdouble_series
&
s2
)
const
;
//! compute coherency
Tdouble_series
coherency
(
const
Tdouble_series
&
s1
,
const
Tdouble_series
&
s2
)
const
;
...
...
Write
Preview
Supports
Markdown
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