[Scopeapp-cvs]scopeapp ChangeLog,1.13,1.14
Status: Alpha
Brought to you by:
narge
From: <sco...@li...> - 2003-02-20 12:51:35
|
Update of /cvsroot/scopeapp/scopeapp In directory sc8-pr-cvs1:/tmp/cvs-serv5912 Modified Files: ChangeLog Log Message: Move PDF-saving code into a new action method, which is called by -mouseDown. Add -acceptsFirstResponder and -acceptsFirstMouse:, both of which unconditionally return YES. Index: ChangeLog =================================================================== RCS file: /cvsroot/scopeapp/scopeapp/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** ChangeLog 19 Feb 2003 06:08:43 -0000 1.13 --- ChangeLog 20 Feb 2003 12:51:31 -0000 1.14 *************** *** 1,3 **** --- 1,23 ---- + 2003-02-20 Philip Derrin <na...@us...> + + * src/TraceView.m (-mouseDown:, -savePDFImageToFile:), + src/TraceView.h: + Move PDF-saving code into a new action method, which is called by + -mouseDown. Add -acceptsFirstResponder and -acceptsFirstMouse:, + both of which unconditionally return YES. + + * src/SpectrumView.m (-doRealFFTOnData:, -doWindowingOnData:), + src/SpectrumView.h: + Implemented several windowing functions (Bartlett, Blackman, Hamming, + Hann (aka Hanning), Welch). Change scaling again; FFT results are divided + by the area of the window function (which is N for the rectangular + window). + 2003-02-19 Philip Derrin <na...@us...> + + * src/SpectrumView.m (vsqrt(float*, int), updateDisplay:): + Fixed some more scaling bugs. FFT results are now being scaled by + 1/N instead of 1/2; this seems to contradict Apple's vDSP docs but + gives the correct results (tested with TestSampler). * src/SpectrumView.m (-doAccumulationOnData:, -doWindowingOnData:, |