-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change of filter format towards 2D processing #3261
Comments
The shapes we are supporting right now are in nmr-processing apodization folder, but we should expose only: {
sineBell: {
apply: true,
shape: {
kind: 'sineBell',
options: { offset: 0 },
},
},
sineSquare: {
apply: true,
shape: {
kind: 'sineSquare',
options: { offset: 0 },
},
},
exponential: {
apply: true,
shape: {
kind: 'exponential',
options: { lb: 0.1 },
},
},
lorentzToGauss: {
apply: true,
shape: {
kind: 'lorentzToGauss',
options: {
lineBroadening: 0.1,
gaussBroadening: 0.1,
lineBroadeningCenter: 0,
},
},
},
modifiedGaussian: {
apply: true,
shape: {
kind: 'modifiedGaussian',
options: {
lineBroadening: 0.1,
gaussianBroadening: 0.1,
},
},
},
traf: {
apply: true,
shape: {
kind: 'traf',
options: { lb: 0.1 },
},
},
} |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, the filter apodization options is:
The text was updated successfully, but these errors were encountered: