mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 16:13:57 -04:00
28b414d56e
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6788 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
46 lines
1.6 KiB
C
46 lines
1.6 KiB
C
// np_fwht.h
|
|
// Basic implementation of the Fast Walsh-Hadamard Transforms
|
|
//
|
|
// (c) 2016 - Nico Palermo, IV3NWV - Microtelecom Srl, Italy
|
|
// ------------------------------------------------------------------------------
|
|
// This file is part of the qracodes project, a Forward Error Control
|
|
// encoding/decoding package based on Q-ary RA (repeat and accumulate) LDPC codes.
|
|
//
|
|
// qracodes 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.
|
|
// qracodes 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 qracodes source distribution.
|
|
// If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#ifndef _npfwht_h_
|
|
#define _npfwht_h_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void np_fwht(int nlogdim, float *dst, float *src);
|
|
// Compute the Walsh-Hadamard transform of the given data up to a
|
|
// 64-dimensional transform
|
|
//
|
|
// Input parameters:
|
|
// nlogdim: log2 of the transform size. Must be in the range [0..6]
|
|
// src : pointer to the input data buffer.
|
|
// dst : pointer to the output data buffer.
|
|
//
|
|
// src and dst must point to preallocated data buffers of size 2^nlogdim*sizeof(float)
|
|
// src and dst buffers can overlap
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _npfwht_
|