Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1556 |
|
help() help('aips') help('display') web()
a:=1:1000 b:=sin(pi*(a/360)^2) print a[1:10] , b[1:10]
mypg:=pgplotter() mypg.plotxy(a, b, "Chirp")
- help('*fft*') There are 10 matches. Please choose from: aips.mathematics.fftserverdemo aips.mathematics.fftservertest aips.mathematics.fftserver aips.mathematics.fftserver.complexfft aips.mathematics.fftserver.realtocomplexfft aips.mathematics.fftserver.convolve aips.mathematics.fftserver.crosscorr aips.mathematics.fftserver.autocorr aips.mathematics.fftserver.shift synthesis.synthesisdos.imagesolver.setfft F - help('*fftserver') fftserver -- Object -- aips.mathematics FFTs and related operations Methods complexfft Full complex-to-complex in-place FFT of an array realtocomplexfft Real to Complex FFT of an array convolve Convolve a model with a psf crosscorr Cross-correlate two real arrays autocorr Auto-correlate an array shift Shift an array some number of pixels with an FFT You may find more information in the on-line documentation available via your web browser. Type the command web() to view more about aips.mathematics.fftserver. F - web()Now use it:
myfft:=fftserver() c:=myfft.realtocomplexfft(b) mypg.clear() mypg.plotxy(a, abs(c), "FT of Chirp")
a:=array(1:1000, 100, 100) dd.array(a)