Raman Data Analysis - Normalization
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
ahmi ali
il 15 Gen 2020
Risposto: Jakob B. Nielsen
il 15 Gen 2020
I have mulitiple sets of data from Raman setup. I need one set of data without a peak to be set as a baseline measurement. Afterwards the data should be normalized so I can anaylse the peaks correctly. Any help will be appreciated.
0 Commenti
Risposta accettata
Jakob B. Nielsen
il 15 Gen 2020
For your baseline, cover the detector with a beam block, and record a spectrum. This will be your baseline.
For normalizing a spectrum, simply:
maxval=max(spectrum1);
spectrum1_normalized=spectrum1/maxval; %the max value will be 1, and the rest of the spectrum will be scaled appropriately.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Exploration in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!