-
Notifications
You must be signed in to change notification settings - Fork 18
Home
James Dillon edited this page Mar 20, 2015
·
22 revisions
Chromatography Toolbox (v0.1.4
) is a collection of methods and algorithms for processing chromatography data in MATLAB.
###Table of Contents
###Initialize
Initialize the Chromatography
class to use any of the following methods: import
, centroid
, baseline
, smooth
, integrate
, visualize
.
obj = Chromatography
###Import
Import data into the MATLAB workspace with the import
method.
data = obj.import(filetype, 'OptionName', optionvalue)
###Baseline
Perform baseline correction with the baseline
method.
data = obj.baseline(data, 'OptionName', optionvalue)
###Smooth
Smooth raw data with the smooth
method.
data = obj.smooth(data, 'OptionName', optionvalue)
###Integrate
Find peaks and determine peak area using the integrate
method.
data = obj.integrate(data, 'OptionName', optionvalue)
###Visualize
Plot data and export high quality figures using the visualize
method.
fig = obj.visualize(data, 'OptionName', optionvalue)