Click here to Skip to main content
15,922,584 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Function Parameters Pin
skaanji19-Oct-03 1:51
skaanji19-Oct-03 1:51 
GeneralRe: Function Parameters Pin
Mike Dimmick19-Oct-03 2:16
Mike Dimmick19-Oct-03 2:16 
GeneralRe: Function Parameters Pin
Alexander M.,19-Oct-03 4:01
Alexander M.,19-Oct-03 4:01 
Generalnoob alert part 2 !! ShellExec function. Pin
no_life18-Oct-03 19:23
no_life18-Oct-03 19:23 
GeneralRe: noob alert part 2 !! ShellExec function. Pin
Andrew Walker19-Oct-03 1:13
Andrew Walker19-Oct-03 1:13 
GeneralRe: noob alert part 2 !! ShellExec function. Pin
no_life19-Oct-03 10:56
no_life19-Oct-03 10:56 
GeneralFFT analysis Pin
Alexander M.,18-Oct-03 12:51
Alexander M.,18-Oct-03 12:51 
GeneralRe: FFT analysis Pin
Anonymous19-Oct-03 13:36
Anonymous19-Oct-03 13:36 
perhaps this helps you

#include <math.h>
#define SWAP(a,b) tempr=(a);(a)=(b);(b)=tempr

void fft(double data[], unsigned long nn, int isign)
{
unsigned long n,mmax,m,j,istep,i;
double wtemp,wr,wpr,wpi,wi,theta,tempr,tempi;

n=nn << 1;
j=1;
for (i=1;i<n;i+=2) {
="" if="" (j=""> i) {
SWAP(data[j],data[i]);
SWAP(data[j+1],data[i+1]);
}
m=n >> 1;
while (m >= 2 && j > m) {
j -= m;
m >>= 1;
}
j += m;
}
mmax=2;
while (n > mmax) {
istep=mmax << 1;
theta=isign*(6.28318530717959/mmax);
wtemp=sin(0.5*theta);
wpr = -2.0*wtemp*wtemp;
wpi=sin(theta);
wr=1.0;
wi=0.0;
for (m=1;m
GeneralReally amazingly simple question Pin
MrEyes18-Oct-03 11:17
MrEyes18-Oct-03 11:17 
GeneralRe: Really amazingly simple question Pin
Rafael Fernández López18-Oct-03 12:33
Rafael Fernández López18-Oct-03 12:33 
GeneralRe: Really amazingly simple question Pin
Michael Dunn18-Oct-03 12:44
sitebuilderMichael Dunn18-Oct-03 12:44 
GeneralRe: Really amazingly simple question Pin
MrEyes18-Oct-03 14:09
MrEyes18-Oct-03 14:09 
GeneralRe: Really amazingly simple question Pin
Taka Muraoka18-Oct-03 14:45
Taka Muraoka18-Oct-03 14:45 
GeneralMultiple developers working on same .rc file Pin
Ravi Bhavnani18-Oct-03 9:01
professionalRavi Bhavnani18-Oct-03 9:01 
GeneralRe: Multiple developers working on same .rc file Pin
Mike Dimmick19-Oct-03 2:26
Mike Dimmick19-Oct-03 2:26 
GeneralRe: Multiple developers working on same .rc file Pin
Ravi Bhavnani19-Oct-03 4:39
professionalRavi Bhavnani19-Oct-03 4:39 
General&quot;File Modified Outside Source Editor&quot; Warning Message Pin
Carl Owenby18-Oct-03 8:43
sussCarl Owenby18-Oct-03 8:43 
GeneralCSocket Pin
lpRomang18-Oct-03 7:04
lpRomang18-Oct-03 7:04 
GeneralRe: CSocket Pin
Alexander M.,18-Oct-03 12:42
Alexander M.,18-Oct-03 12:42 
GeneralRe: CSocket Pin
Rafael Fernández López19-Oct-03 0:06
Rafael Fernández López19-Oct-03 0:06 
Generaltoolbar (again) Pin
Max Santos18-Oct-03 6:37
Max Santos18-Oct-03 6:37 
GeneralRe: toolbar (again) Pin
includeh1018-Oct-03 6:44
includeh1018-Oct-03 6:44 
GeneralRe: toolbar (again) Pin
Max Santos23-Oct-03 23:18
Max Santos23-Oct-03 23:18 
Generalreceiving keybords input on modeless dialog created using DLL Pin
bhalchan18-Oct-03 6:34
bhalchan18-Oct-03 6:34 
QuestionHow to use Timer in a win32 dll ? Pin
legrillon18-Oct-03 6:32
legrillon18-Oct-03 6:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.