-
Notifications
You must be signed in to change notification settings - Fork 18
Home
chemplexity edited this page Nov 28, 2014
·
22 revisions
###Methods
##Initialize
To get started, load the Chromatography
class.
obj = Chromatography
##Import
Import raw instrument data files in the MATLAB workspace with the import
method.
####Syntax
obj.import(filetype)
obj.import(filetype, 'OptionName', optionvalue...)
##Baseline
Perform baseline correction of chromatographic data.
####Syntax
obj.baseline(data)
obj.baseline(data, 'OptionName', optionvalue...)
##Integrate
Perform peak detection and calculate peak area.
####Syntax
obj.integrate(data)
obj.integrate(data, 'OptionName', optionvalue...)
##Visualization
Plot chromatograms, baselines, and curve fitting results
####Syntax
obj.visualize(data)
obj.visualize(data, 'OptionName', optionvalue...)