What can I do if I want to add multiple deconvolve results to Group? #454
Unanswered
zhangnaichi2020
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to add multiple deconvolve results to the Group in a way like
"
croh3.deconv1 = xas_deconvolve(croh3.energy, croh3.flat, from='Gaussian', esigma=0.05)
croh3.deconv2 = xas_deconvolve(croh3.energy, croh3.flat, from='Gaussian', esigma=0.1)
"
but falied, I know the reason, but the function "larch.math.utils.smooth" can do this instead of the function xas_concolve in a way like
"
smooth(croh30001.energy, croh30001.flat, sigma=0.05, form='gaussian')
"
I wonder if xas_deconvolve also have other alternative function or what I can do if I want to realize this function.
Beta Was this translation helpful? Give feedback.
All reactions