How do I normalize Area under curve of NIR spectra to 1

2 vues (au cours des 30 derniers jours)
NCA
NCA le 27 Juin 2021
Modifié(e) : Image Analyst le 27 Juin 2021
How do I normalize Area Under Curve of NIR spectra to 1 using Matlab 2020b please?
Thank You

Réponse acceptée

Image Analyst
Image Analyst le 27 Juin 2021
Modifié(e) : Image Analyst le 27 Juin 2021
Don't you just do
signal = signal / sum(signal);
That's if you're plotting your signal like little bars in a bar chart. If you're computing area like they're little trapezoids, then use
signal = signal / trapz(signal);

Plus de réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by