Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Seitosh
Seitosh
Commits
771da0fe
Commit
771da0fe
authored
Jan 21, 2019
by
thomas.forbriger
Browse files
libpsdxx [WP]: implement sampling on logarithmic scale by calling template
parent
82f76a2d
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/libs/libpsdxx/function_log_sampling_c.cc
View file @
771da0fe
...
...
@@ -38,6 +38,15 @@
namespace
psd
{
/*! sample complex values on a logarithmic frequency axis
*/
TDCISeries
::
Tseries
log_sampling
(
const
TDCISeries
::
Tcoc
&
s
,
const
TDseries
::
Tcoc
&
f
)
{
return
(
psd
::
helper
::
gen_log_sampling
(
s
,
f
));
}
// TDCISeries::Tseries log_sampling(const TDCISeries::Tcoc& s,
// const TDseries::Tcoc& f)
}
// namespace psd
/* ----- END OF function_log_sampling_c.cc ----- */
src/libs/libpsdxx/function_log_sampling_r.cc
View file @
771da0fe
...
...
@@ -38,6 +38,15 @@
namespace
psd
{
/*! sample real values on a logarithmic frequency axis
*/
TDISeries
::
Tseries
log_sampling
(
const
TDCISeries
::
Tcoc
&
s
,
const
TDseries
::
Tcoc
&
f
)
{
return
(
psd
::
helper
::
gen_log_sampling
(
s
,
f
));
}
// TDISeries::Tseries log_sampling(const TDISeries::Tcoc& s,
// const TDseries::Tcoc& f)
}
// namespace psd
/* ----- END OF function_log_sampling_r.cc ----- */
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