Template Classes for Digital Signal Analysis
Posted
by Alexander Beletsky
on January 2nd, 2003
This article briefly describes a collection of template classes that can be used in digital signal analysis.
This collection consists of four classes:
- Template class WFastHT—implements algorithm of Fast Haara's Transformation (by Anatoly Beletsky). The template has two type parameters:
- T_in—type of input values (input signal)
- T_out—type of output values (spectrum)
- Template class WIFastHT—implements algorithm of Inverse Fast Haara's Transformation.
- Template class WFastFT—implements algorithm of Fast Fourier Transformation (Tim Kientzle "A Programmer's Guide To Sound" Copyright © 1998 Tim Kientzle).
- Template class WFastWT—implements algorithm of Fast Walsh's Transformation in different bases:
- HADOMARD—Walsh's-Hadomar's basis
- PELEY—Peley's basis
- WALSH—"classical" basis
- COOLEY—Cooley's basis (discovered by Anatoly Beletsky in 1999)
- Binary inversion
- Grey's "left-handed" coding operation
- Grey's "left-handed" inverse coding operation
- Grey's "right-handed" coding operation
- Grey's "right-handed" inverse coding operation
For details, contact me.
Here is an example of the code's usage:
#include <iostream>
using std::cout;
using std::cin;
#include "transform.h"
const int Val = 8;
const int fr = 7;
int main()
{
try {
WFastHT< double, double > haaras( Val );
WIFastHT< double, double > ihaaras( Val );
double data[Val] = { 1,2,3,4,4,3,2,1 };
double *pD, *pS;
haaras.setData( data );
haaras.doTransform();
pD = haaras.getSpectrum();
cout << "Input signal: \n";
for( int i = 0; i < Val; i++ ) {
cout << data[ i ] << "\n";
}
cout << "\nSpectrum: \n";
for( i = 0; i < Val; i++ ) {
cout << pD[ i ] << "\n";
}
ihaaras.setData( pD );
ihaaras.doTransform();
pS = ihaaras.getSpectrum();
cout << "\nInverse haara's transformation: \n";
for( i = 0; i < Val; i++ ) {
cout << pS[ i ] << "\n";
}
}
catch( TransError::badNValue ) {
cout << "Bad N!\n";
}
catch( TransError::noData ) {
cout << "No data available!\n";
}
catch( TransError::noSuchBasis ) {
}
return 1;
}
Downloads
Download demo project - 78 KbDownload source - 4 Kb

Comments
More info
Posted by Legacy on 01/09/2003 12:00amOriginally posted by: Alexander
First of all thanks anyone who read my article, because it is my first!
About "More info" and "Contact me". Please read my source code - everything that you need there! If I try to explaine basics of FFT, FHT or FWT CodeGuru will never publish my article ;) (because of its size). There many places in internet with these algorithm explanation, I just wanted to help you with implementaion of these algorithms. I would like to focus your attention in new types of coding operation which extends "clasic" Greys coding.
Thank for comments.
-
Reply
-
Replydf
Posted by npj017 on 04/01/2009 10:46amwhere
Posted by axlear on 09/29/2004 02:03ami didnt find your code.
ReplyMore info please?
Posted by Legacy on 01/04/2003 12:00amOriginally posted by: Dave
At first I thought Paul's comment was a little harsh. But after scratching my head, I have to admit that a little more explanation would help. I've been looking for some compact FFT code for a while now - most implmentations I've come across are convoluted and incomprehensible. Thanks for posting this class and any additional descriptive text would be greatly appreciated.
Reply"Contact me for details"
Posted by Legacy on 01/03/2003 12:00amOriginally posted by: Paul
The last time I checked, the whole purpose of this site is to share the details of how the code was implemented, the problems you faced, and the solutions to those problems.
If you think there are details significant enough for people to contact you, then post those details with your article and code. Otherwise, what's the point of you posting at all?
-
ReplyTemplate Classes for Digital Signal An
Posted by Datnt on 11/02/2004 11:21pmGood
Reply