/usr/include/itpp/signal/resampling.h is in libitpp-dev 4.3.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 | /*!
* \file
* \brief Resampling functions - header file
* \author Tony Ottosson and Adam Piatyszek
*
* -------------------------------------------------------------------------
*
* Copyright (C) 1995-2010 (see AUTHORS file for a list of contributors)
*
* This file is part of IT++ - a C++ library of mathematical, signal
* processing, speech processing, and communications classes and functions.
*
* IT++ is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* IT++ is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with IT++. If not, see <http://www.gnu.org/licenses/>.
*
* -------------------------------------------------------------------------
*/
#ifndef RESAMPLING_H
#define RESAMPLING_H
#include <itpp/base/mat.h>
#include <itpp/itexports.h>
namespace itpp
{
/*!
* \addtogroup resampling
* @{
*/
//! Repeat each element in the vector \a norepeats times in sequence
template<class T>
Vec<T> repeat(const Vec<T> &v, int norepeats)
{
Vec<T> temp(v.length()*norepeats);
for (int i = 0; i < v.length(); i++) {
for (int j = 0;j < norepeats;j++)
temp(i*norepeats + j) = v(i);
}
return temp;
}
//! Repeats each column \a norepeats times in sequence
template<class T>
Mat<T> repeat(const Mat<T> &m, int norepeats)
{
Mat<T> temp(m.rows(), m.cols()*norepeats);
for (int j = 0; j < m.cols(); j++) {
for (int i = 0;i < norepeats;i++) {
temp.set_col(j*norepeats + i, m.get_col(j));
}
}
return temp;
}
//! Upsample a vector by inserting \a (usf-1) zeros after each sample
template<class T>
void upsample(const Vec<T> &v, int usf, Vec<T> &u)
{
it_assert_debug(usf >= 1, "upsample: upsampling factor must be equal or greater than one");
u.set_size(v.length()*usf);
u.clear();
for (int i = 0;i < v.length();i++)
u(i*usf) = v(i);
}
//! Upsample a vector by inserting \a (usf-1) zeros after each sample
template<class T>
Vec<T> upsample(const Vec<T> &v, int usf)
{
Vec<T> u;
upsample(v, usf, u);
return u;
}
//! Upsample each column by inserting \a (usf-1) zeros after each column
template<class T>
void upsample(const Mat<T> &v, int usf, Mat<T> &u)
{
it_assert_debug(usf >= 1, "upsample: upsampling factor must be equal or greater than one");
u.set_size(v.rows(), v.cols()*usf);
u.clear();
for (int j = 0;j < v.cols();j++)
u.set_col(j*usf, v.get_col(j));
}
//! Upsample each column by inserting \a (usf-1) zeros after each column
template<class T>
Mat<T> upsample(const Mat<T> &v, int usf)
{
Mat<T> u;
upsample(v, usf, u);
return u;
}
//! Upsample each column by a factor of \a (usf-1) by linear interpolation
template<class T>
void lininterp(const Mat<T> &m, int usf, Mat<T> &u)
{
it_assert_debug(usf >= 1, "lininterp: upsampling factor must be equal or greater than one");
int L = (m.cols() - 1) * usf + 1;
u.set_size(m.rows(), L);
for (int i = 0; i < m.rows(); i++) {
for (int j = 0; j < L - 1; j++)
u(i, j) = (m(i, j / usf) + (j % usf) / ((double)usf) * (m(i, (j + usf) / usf) - m(i, j / usf)));
u(i, L - 1) = m(i, m.cols() - 1);
}
}
/*!
* \brief Upsample each column of matrix \a m to achieve \a f_ups
* frequency using linear interpolation
* \author Adam Piatyszek
*
* This function performs upsampling of matrix \a m to achieve
* \a nrof_samples samples at \a f_ups frequency starting from the sample
* at \a t_start time. The frequency of input samples stored in the matrix
* \a m is defined by the \a f_base parameter.
*/
template<class T>
Mat<T> lininterp(const Mat<T> &m, double f_base, double f_ups,
int nrof_samples, double t_start = 0)
{
double t_base = 1 / f_base;
double t_ups = 1 / f_ups;
int rows = m.rows();
int cols = m.cols();
it_assert_debug(f_ups > f_base, "lininterp(): upsampled frequency must be greater than base frequency");
it_assert_debug((t_start >= 0) && (t_start < cols * t_base), "lininterp(): incorrect start time offset");
it_assert_debug((nrof_samples * t_ups + t_start) <= (cols * t_base), "lininterp(): too many samples required or input data to short");
Mat<T> u(rows, nrof_samples);
double curr_time = t_start;
int i = 0;
int k = 0;
while (i < cols - 1) {
while ((curr_time < (i + 1) * t_base) && (k < nrof_samples)) {
for (int j = 0; j < rows; j++) {
u(j, k) = (m(j, i) * ((i + 1) * t_base - curr_time)
- m(j, i + 1) * (i * t_base - curr_time)) / t_base;
}
k++;
curr_time += t_ups;
}
i++;
}
return u;
}
//! Upsample each column by a factor of \a (usf-1) by linear interpolation
template<class T>
Mat<T> lininterp(const Mat<T> &m, int usf)
{
Mat<T> u;
lininterp(m, usf, u);
return u;
}
//! Upsample by a factor of \a (usf-1) by linear interpolation
template<class T>
void lininterp(const Vec<T> &v, int usf, Vec<T> &u)
{
it_assert_debug(usf >= 1, "lininterp(): upsampling factor must be equal or greater than one");
int L = (v.length() - 1) * usf + 1;
u.set_size(L);
for (int j = 0; j < L - 1; j++) {
u(j) = (v(j / usf) + (j % usf) / ((double)usf) * (v((j + usf) / usf) - v(j / usf)));
}
u(L - 1) = v(v.length() - 1);
}
//! Upsample by a factor of \a (usf-1) by linear interpolation
template<class T>
Vec<T> lininterp(const Vec<T> &v, int usf)
{
Vec<T> u;
lininterp(v, usf, u);
return u;
}
/*!
* \brief Upsample vector \a v to achieve \a f_ups frequency using linear
* interpolation
* \author Adam Piatyszek
*
* This function performs upsampling of vector \a v to achieve
* \a nrof_samples samples at \a f_ups frequency starting from the sample
* at \a t_start time. The frequency of input samples stored in the vector
* \a v is defined by the \a f_base parameter.
*/
template<class T>
Vec<T> lininterp(const Vec<T> &v, double f_base, double f_ups,
int nrof_samples, double t_start = 0)
{
double t_base = 1 / f_base;
double t_ups = 1 / f_ups;
int len = v.length();
it_assert_debug(f_ups > f_base, "lininterp(): upsampled frequency must be greater than base frequency");
it_assert_debug((t_start >= 0) && (t_start < len * t_base), "lininterp(): incorrect start time offset");
it_assert_debug((nrof_samples * t_ups + t_start) <= (len * t_base), "lininterp(): too many samples required or input data to short");
Vec<T> u(nrof_samples);
double curr_time = t_start;
int i = 0;
int k = 0;
while (i < len - 1) {
while ((curr_time < (i + 1) * t_base) && (k < nrof_samples)) {
u(k) = (v(i) * ((i + 1) * t_base - curr_time)
- v(i + 1) * (i * t_base - curr_time)) / t_base;
k++;
curr_time += t_ups;
}
i++;
}
return u;
}
/*!
* @}
*/
//! \cond
// ----------------------------------------------------------------------
// Instantiations
// ----------------------------------------------------------------------
//! Extern Template instantiation of repeat
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT vec repeat(const vec &v, int norepeats);
//! Extern Template instantiation of repeat
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT cvec repeat(const cvec &v, int norepeats);
//! Extern Template instantiation of repeat
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT svec repeat(const svec &v, int norepeats);
//! Extern Template instantiation of repeat
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT ivec repeat(const ivec &v, int norepeats);
//! Extern Template instantiation of repeat
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT bvec repeat(const bvec &v, int norepeats);
//! Extern Template instantiation of repeat
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT mat repeat(const mat &m, int norepeats);
//! Extern Template instantiation of repeat
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT cmat repeat(const cmat &m, int norepeats);
//! Extern Template instantiation of repeat
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT smat repeat(const smat &m, int norepeats);
//! Extern Template instantiation of repeat
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT imat repeat(const imat &m, int norepeats);
//! Extern Template instantiation of repeat
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT bmat repeat(const bmat &m, int norepeats);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT vec upsample(const vec &v, int usf);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT cvec upsample(const cvec &v, int usf);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT svec upsample(const svec &v, int usf);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT ivec upsample(const ivec &v, int usf);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT bvec upsample(const bvec &v, int usf);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT mat upsample(const mat &v, int usf);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT cmat upsample(const cmat &v, int usf);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT smat upsample(const smat &v, int usf);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT imat upsample(const imat &v, int usf);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT bmat upsample(const bmat &v, int usf);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void upsample(const vec &v, int usf, vec &u);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void upsample(const cvec &v, int usf, cvec &u);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void upsample(const svec &v, int usf, svec &u);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void upsample(const ivec &v, int usf, ivec &u);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void upsample(const bvec &v, int usf, bvec &u);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void upsample(const mat &v, int usf, mat &u);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void upsample(const cmat &v, int usf, cmat &u);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void upsample(const smat &v, int usf, smat &u);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void upsample(const imat &v, int usf, imat &u);
//! Extern Template instantiation of upsample
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void upsample(const bmat &v, int usf, bmat &u);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT vec lininterp(const vec &v, int usf);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT cvec lininterp(const cvec &v, int usf);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT mat lininterp(const mat &v, int usf);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT cmat lininterp(const cmat &v, int usf);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void lininterp(const vec &v, int usf, vec &u);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void lininterp(const cvec &v, int usf, cvec &u);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void lininterp(const mat &v, int usf, mat &u);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT void lininterp(const cmat &v, int usf, cmat &u);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT mat lininterp(const mat &m, double f_base, double f_ups, int nrof_samples, double t_start);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT cmat lininterp(const cmat &m, double f_base, double f_ups, int nrof_samples, double t_start);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT vec lininterp(const vec &v, double f_base, double f_ups, int nrof_samples, double t_start);
//! Extern Template instantiation of liniterp
ITPP_EXPORT_TEMPLATE template ITPP_EXPORT cvec lininterp(const cvec &v, double f_base, double f_ups, int nrof_samples, double t_start);
//! \endcond
} // namespace itpp
#endif // #ifndef RESAMPLING_H
|