##// END OF EJS Templates
Bug fixed: AMISR Reader filling with zeros at the begining of the processing....
Bug fixed: AMISR Reader filling with zeros at the begining of the processing. Updated: PrintInfo, print the info about AMISR Properties only one time. AMISR Reader, there is a new inut to set timezone 'lt' or 'ut', by default is 'ut' Removing sentences from figure.py to import customftp module.

File last commit:

r304:e57b3a4fabda
r497:85140003652c
Show More
cfunctions.pyx
9 lines | 278 B | text/x-cython | CythonLexer
import numpy
cimport numpy
def decoder(numpy.ndarray[numpy.complex_t, ndim=2] fft_code, numpy.ndarray[numpy.complex_t, ndim=2] data):
fft_data = numpy.fft.fft(data, axis=1)
conv = fft_data*fft_code
data = numpy.fft.ifft(conv, axis=1)
return data