##// END OF EJS Templates
A SpectraProc se agrega:...
A SpectraProc se agrega: - removeDC - removeInterference A Spectra se agrega: - ippFactor, esto es un atributo que afecta a los getVelRange() y getFreqRange() En jrodataIO se elimina la clase FITS

File last commit:

r304:e57b3a4fabda
r445:ff1e0d352ade
Show More
cfunctions.pyx
9 lines | 278 B | text/x-cython | CythonLexer
Miguel Valdez
Se anadio el modulo cfunctions donde se agrego la funcion optimizada para decodificar
r301 import numpy
cimport numpy
Miguel Valdez
Mensaje del tiempo ocupado en decodificar
r304 def decoder(numpy.ndarray[numpy.complex_t, ndim=2] fft_code, numpy.ndarray[numpy.complex_t, ndim=2] data):
Miguel Valdez
Se anadio el modulo cfunctions donde se agrego la funcion optimizada para decodificar
r301
fft_data = numpy.fft.fft(data, axis=1)
conv = fft_data*fft_code
data = numpy.fft.ifft(conv, axis=1)
return data