You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Separate functionalities in a separate functions. Decorators that add methods to Spectrum cause problems. Methods should be included directly in the Spectrum definition
Simplify names of find_peak and fit_peak functions
Remove SpectralComponents (deprecated)
for x and y arrays mostly spe.x and spe.y are used. These perform copies of the spe._xdata and spe._ydata (where the actual arrays are stored). spe.__copy__(x=self.x, y=self.y) make other instances of the same numpy.arrays which is against the initial idea for the cache
Multiple unnecessary calculations are done in rc2const. Resampled neon missing peaks. Reduce convolution width.
The text was updated successfully, but these errors were encountered:
Spectrum
cause problems. Methods should be included directly in theSpectrum
definitionSpectralComponents
(deprecated)x
andy
arrays mostlyspe.x
andspe.y
are used. These perform copies of thespe._xdata
andspe._ydata
(where the actual arrays are stored).spe.__copy__(x=self.x, y=self.y)
make other instances of the samenumpy.arrays
which is against the initial idea for the cacherc2const
. Resampled neon missing peaks. Reduce convolution width.The text was updated successfully, but these errors were encountered: