Surface NMR processing and inversion GUI
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213
  1. # Define
  2. Xc <- function(E0, df, tt, phi, T2) {
  3. E0 * -sin(2*pi*df*tt + phi) * exp(-tt/T2)
  4. }
  5. Yc <- function(E0, df, tt, phi, T2) {
  6. E0 * cos(2*pi*df*tt + phi) * exp(-tt/T2)
  7. }
  8. #QI <- function(E0, df, tt, phi, T2, X, Y) {
  9. # (X-Xc(E0, df, tt, phi, T2)) + (Y-Yc(E0, df, tt, phi, T2))
  10. #}