-
Notifications
You must be signed in to change notification settings - Fork 18
Home
James Dillon edited this page Feb 11, 2018
·
22 revisions
Chromatography Toolbox (v0.1.51
) provides command line data processing methods for chromatography and mass spectrometry data in MATLAB.
Initialize the Chromatography
class to use any of the following methods: import
, centroid
, baseline
, smooth
, integrate
, visualize
.
obj = Chromatography
Import raw data into the MATLAB workspace with the import
method. Supported formats include: Agilent (.D), Thermo (.RAW), and netCDF (.CDF).
data = obj.import(filetype, 'OptionName', optionvalue)
Perform baseline correction with the baseline
method.
data = obj.baseline(data, 'OptionName', optionvalue)
Smooth raw data with the smooth
method.
data = obj.smooth(data, 'OptionName', optionvalue)
Find peaks and determine peak area using the integrate
method.
data = obj.integrate(data, 'OptionName', optionvalue)
Plot data and export high quality figures using the visualize
method.
fig = obj.visualize(data, 'OptionName', optionvalue)