Skip to content
chemplexity edited this page Nov 28, 2014 · 22 revisions

Table of Contents

###Methods

  1. Initialize
  2. Import
  3. Baseline
  4. Integration
  5. Visualization

##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...)
Clone this wiki locally