Nothing
#' MPC_ADSM
#' @description Multiple single linear models that minimize the absolute total dispersion.
#' @details This function is used to process phase error correction through multiple single linear models that minimize the absolute total dispersion, followed by polynomial baseline correction when necessary.
#' @param specdat A complex number vector of observed frequency domain data.
#' @param withBC A logical parameter that enables/disables baseline correction after baseline correction
#' @return A numeric vector of phase corrected absorption spectrum
#' @concept phase correction
#' @author Aixiang Jiang
#' @references
#'
#' Jiang, A. (2024). Phase Error Correction in Magnetic Resonance: A Review of Models, Optimization Functions, and Optimizers in Traditional Statistics and Neural Networks. Preprints. https://doi.org/10.20944/preprints202409.2252.v1
#'
#' Chen, L., Weng, Z., Goh, L., & Garland, M. (2002). An efficient algorithm for automatic phase correction of NMR spectra based on
#' entropy minimization. Journal of Magnetic Resonance, 158, 1-2.
#'
#' Ernst, R. R. (1969). Numerical Hilbert transform and automatic phase correction in magnetic resonance spectroscopy.
#' Journal of Magnetic Resonance, 1, 7-26
#'
#' Liland KH, Almøy T, Mevik B (2010), Optimal Choice of Baseline
#' Correction for Multivariate Calibration of Spectra, Applied Spectroscopy 64, pp. 1007-1016.
#' @examples
#' data("fdat")
#' mpc_dsm_phased1 <- MPC_ADSM(fdat$frequency_domain)
#' @export
MPC_ADSM = function(specdat, withBC = TRUE){
cplxDat=specdat
pp=(Re(cplxDat))**2+(Im(cplxDat))**2
mm=sqrt(pp)
peakIndex=peakSearch(mm)
k=length(peakIndex)
peak1=peakIndex[-k]
peak2=peakIndex[-1]
peaks=cbind(peak1,peak2)
#### find valley index
valleyIndex=apply(peaks,1,FUN=function(x){
mdat=mm[x[1]:x[2]]
which.min(mdat)+x[1]-1
})
nn=length(specdat)
valleyIndex=c(1,valleyIndex, nn)
vv=length(valleyIndex)
valleyL=valleyIndex[1:(vv-1)]
valleyL[2:(vv-1)]=valleyL[2:(vv-1)]+1
valleyR=valleyIndex[2:vv]
valleys=cbind(valleyL,valleyR)
phasedComb=apply(valleys,1,FUN=function(x){
res=ADSM(cplxDat[x[1]:x[2]])
})
phasedAll=unlist(phasedComb)
if(withBC == TRUE){
tryBL=myBaseline(phasedAll,bsDf=5, BL_method="modpolyfit")
phasedAll = as.numeric(tryBL)
}
return(phasedAll)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.