Surface NMR processing and inversion GUI
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

quad.r 287B

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. #}